mirror of
https://codeberg.org/ProgramSnail/config.git
synced 2025-12-25 00:38:42 +00:00
remove debug, renaming
This commit is contained in:
parent
262c37e98f
commit
f0756b2a9a
6 changed files with 12 additions and 16 deletions
|
|
@ -1,4 +1,4 @@
|
|||
- name: Installing common packages
|
||||
- name: Installing common dependencies packages
|
||||
become: true
|
||||
ansible.builtin.dnf5:
|
||||
name:
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
- name: Link gitconfig
|
||||
- name: Linking gitconfig
|
||||
ansible.builtin.file:
|
||||
src: '{{ role_path }}/files/.gitconfig'
|
||||
dest: '{{ ansible_env.HOME }}/.gitconfig'
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue