1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_playbook_servers.git synced 2024-09-14 19:53:56 +02:00

update role names

This commit is contained in:
L3D 2021-09-19 23:29:34 +02:00
parent 2844d281df
commit bf1e10dba0
Signed by: l3d
GPG key ID: CD08445BFF4313D1
5 changed files with 6 additions and 6 deletions

6
.gitmodules vendored
View file

@ -11,13 +11,13 @@
path = roles/dotfiles path = roles/dotfiles
url = https://github.com/roles-ansible/ansible_role_dotfiles.git url = https://github.com/roles-ansible/ansible_role_dotfiles.git
[submodule "roles/users"] [submodule "roles/users"]
path = roles/users path = roles/do1jlr.users
url = https://github.com/roles-ansible/ansible_role_users.git url = https://github.com/roles-ansible/ansible_role_users.git
[submodule "roles/ssh_auth"] [submodule "roles/ssh_auth"]
path = roles/ssh_auth path = roles/do1jlr.auth
url = https://github.com/roles-ansible/ansible_role_auth.git url = https://github.com/roles-ansible/ansible_role_auth.git
[submodule "roles/sshd"] [submodule "roles/sshd"]
path = roles/sshd path = roles/do1jlr.sshd
url = https://github.com/roles-ansible/ansible_role_sshd.git url = https://github.com/roles-ansible/ansible_role_sshd.git
[submodule "files/ssh_public_keys"] [submodule "files/ssh_public_keys"]
path = files/ssh_public_keys path = files/ssh_public_keys

View file

@ -17,10 +17,10 @@
- name: user specific roles for all hosts - name: user specific roles for all hosts
hosts: all hosts: all
roles: roles:
- {role: users, tags: [default, init, users, web]} - {role: do1jlr.users, tags: [default, init, users, web]}
- {role: dotfiles, tags: [default, dotfiles]} - {role: dotfiles, tags: [default, dotfiles]}
- {role: ssh_auth, tags: [default, init, users, web]} - {role: do1jlr.auth, tags: [default, init, users, web]}
- {role: sshd, tags: [default, init, users, sshd]} - {role: do1jlr.sshd, tags: [default, init, users, sshd]}
- {role: geerlingguy.firewall, tags: [default, firewall], become: true} - {role: geerlingguy.firewall, tags: [default, firewall], become: true}
- {role: robertdebock.fail2ban, tags: [default, fail2ban], become: true} - {role: robertdebock.fail2ban, tags: [default, fail2ban], become: true}