diff --git a/roles/dev/tasks/build.yml b/roles/dev/tasks/build.yml index 89a5461..9caae74 100644 --- a/roles/dev/tasks/build.yml +++ b/roles/dev/tasks/build.yml @@ -1,4 +1,4 @@ -- name: Installing common packages +- name: Installing common dependencies packages become: true ansible.builtin.dnf5: name: diff --git a/roles/dotfiles/tasks/bash.yml b/roles/dotfiles/tasks/bash.yml index c97335d..9ab406d 100644 --- a/roles/dotfiles/tasks/bash.yml +++ b/roles/dotfiles/tasks/bash.yml @@ -1,25 +1,25 @@ -- name: Link bashrc +- name: Linking bashrc ansible.builtin.file: src: '{{ role_path }}/files/.bashrc' dest: '{{ ansible_env.HOME }}/.bashrc' state: link force: true -- name: Link inputrc +- name: Linking inputrc ansible.builtin.file: src: '{{ role_path }}/files/.inputrc' dest: '{{ ansible_env.HOME }}/.inputrc' state: link force: true -- name: Link profile +- name: Linking profile ansible.builtin.file: src: '{{ role_path }}/files/.profile' dest: '{{ ansible_env.HOME }}/.profile' state: link force: true -- name: Link bash profile +- name: Linking bash profile ansible.builtin.file: src: '{{ role_path }}/files/.bash_profile' dest: '{{ ansible_env.HOME }}/.bash_profile' diff --git a/roles/dotfiles/tasks/git.yml b/roles/dotfiles/tasks/git.yml index dc8b914..b445dcb 100644 --- a/roles/dotfiles/tasks/git.yml +++ b/roles/dotfiles/tasks/git.yml @@ -1,4 +1,4 @@ -- name: Link gitconfig +- name: Linking gitconfig ansible.builtin.file: src: '{{ role_path }}/files/.gitconfig' dest: '{{ ansible_env.HOME }}/.gitconfig' diff --git a/roles/dotfiles/tasks/gui.yml b/roles/dotfiles/tasks/gui.yml index 6f7f6cc..96f30d7 100644 --- a/roles/dotfiles/tasks/gui.yml +++ b/roles/dotfiles/tasks/gui.yml @@ -1,18 +1,18 @@ -- name: Link kitty configuration directory +- name: Linking kitty configuration directory ansible.builtin.file: src: '{{ role_path }}/files/.config/kitty' dest: '{{ ansible_env.HOME }}/.config/kitty' state: link force: true -- name: Link alacritty configuration file +- name: Linking alacritty configuration file ansible.builtin.file: src: '{{ role_path }}/files/.alacritty.toml' dest: '{{ ansible_env.HOME }}/.alacritty.toml' state: link force: true -- name: Link alacritty configuration directory +- name: Linking alacritty configuration directory ansible.builtin.file: src: '{{ role_path }}/files/.config/alacritty' dest: '{{ ansible_env.HOME }}/.config/alacritty' diff --git a/roles/dotfiles/tasks/scripts.yml b/roles/dotfiles/tasks/scripts.yml index 344e267..93af8ef 100644 --- a/roles/dotfiles/tasks/scripts.yml +++ b/roles/dotfiles/tasks/scripts.yml @@ -1,15 +1,11 @@ -- name: Link scripts +- name: Linking scripts ansible.builtin.file: src: '{{ role_path }}/files/.bin' dest: '{{ ansible_env.HOME }}/.bin' state: link force: true -- name: Debug - ansible.builtin.debug: - msg: 'Home is {{ ansible_env.HOME }}' - -- name: Link templates +- name: Linking templates ansible.builtin.file: src: '{{ role_path }}/files/.templates' dest: '{{ ansible_env.HOME }}/.templates' diff --git a/roles/dotfiles/tasks/ssh.yml b/roles/dotfiles/tasks/ssh.yml index 9c59455..416baec 100644 --- a/roles/dotfiles/tasks/ssh.yml +++ b/roles/dotfiles/tasks/ssh.yml @@ -2,7 +2,7 @@ # TODO: copy directory ?? # create .ssh in files by hand, use everywere automatically -- name: Link ssh +- name: Linking ssh ansible.builtin.file: src: '{{ role_path }}/files/.ssh' dest: '{{ ansible_env.HOME }}/.ssh'