chore: rename some things
parent
27e6e693bc
commit
6d50983f84
|
@ -24,6 +24,6 @@ Ansible configuration repository for my homelab.
|
|||
`static_ip` host var set to the desired static IP address
|
||||
8. Comment out `ansible_ssh_user` in `group_vars/all/vars.yml`, as this
|
||||
overwrites the one set in the hosts file
|
||||
9. Run `ansible-playbook -i initial-hosts.ini first_run.yml`. This command will
|
||||
9. Run `ansible-playbook -i inventory/initial_hosts.ini first_run.yml`. This command will
|
||||
hang at the `restart networking` step; at this point you can Ctrl-C.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[defaults]
|
||||
vault_password_file = .ansible-password
|
||||
inventory = hosts.ini
|
||||
inventory = inventory/local.ini
|
||||
roles_path = roles
|
||||
|
|
|
@ -70,12 +70,12 @@
|
|||
- restic-rest
|
||||
tags: restic-rest
|
||||
|
||||
- name: Install Lander
|
||||
hosts: nas
|
||||
become: yes
|
||||
roles:
|
||||
- lander
|
||||
tags: lander
|
||||
# - name: Install Lander
|
||||
# hosts: nas
|
||||
# become: yes
|
||||
# roles:
|
||||
# - lander
|
||||
# tags: lander
|
||||
|
||||
- hosts: nas
|
||||
become: yes
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
|
||||
- hosts: web
|
||||
become: yes
|
||||
roles:
|
||||
- lander-web
|
||||
tags: lander
|
||||
# - hosts: web
|
||||
# become: yes
|
||||
# roles:
|
||||
# - lander-web
|
||||
# tags: lander
|
||||
|
||||
- hosts: web
|
||||
become: yes
|
||||
|
@ -83,8 +83,8 @@
|
|||
- webdav-web
|
||||
tags: webdav
|
||||
|
||||
# - hosts: web
|
||||
# become: yes
|
||||
# roles:
|
||||
# - otter-web
|
||||
# tags: otter
|
||||
- hosts: web
|
||||
become: yes
|
||||
roles:
|
||||
- otter-web
|
||||
tags: otter
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
append: true
|
||||
create_home: yes
|
||||
shell: /bin/bash
|
||||
password: "{{ vault_debian_pass | password_hash('sha512') }}"
|
||||
password: "{{ debian_pass | password_hash('sha512') }}"
|
||||
update_password: on_create
|
||||
|
||||
- name: Create SSH directory.
|
||||
|
|
Loading…
Reference in New Issue