refs #8025 Tags added, added clean playbook, sudoers moved to guest
This commit is contained in:
parent
ae8ff99fc9
commit
77616531ab
|
@ -16,7 +16,7 @@ locally to ensure they work properly.
|
|||
|
||||
Launch playbook on the fly on a host not declared in the inventory.
|
||||
```
|
||||
ansible-playbook playbooks/test.yml -u root -i <ip_or_hostname>,
|
||||
ansible-playbook -u root -i <ip_or_hostname>, playbooks/test.yml
|
||||
```
|
||||
|
||||
*Note the comma at the end of the hostname or IP.*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
- hosts: all
|
||||
- name: Configure AWX user
|
||||
hosts: all
|
||||
gather_facts: no
|
||||
become: no
|
||||
tasks:
|
||||
- name: Configure AWX user
|
||||
import_role:
|
||||
- import_role:
|
||||
name: awx
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
- name: Clean deprecated configuration
|
||||
hosts: all
|
||||
gather_facts: no
|
||||
tasks:
|
||||
- name: Delete awx-user
|
||||
ansible.builtin.user:
|
||||
name: awx-user
|
||||
state: absent
|
||||
remove: yes
|
||||
- name: Delete awx-user sudoers file
|
||||
file:
|
||||
path: /etc/sudoers.d/awx-user
|
||||
state: absent
|
|
@ -1,5 +1,5 @@
|
|||
- hosts: all
|
||||
- name: Upgrade Debian host
|
||||
hosts: all
|
||||
tasks:
|
||||
- name: Upgrade system
|
||||
import_role:
|
||||
- import_role:
|
||||
name: debian-upgrade
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
- hosts: all
|
||||
- name: Configure base Debian host
|
||||
hosts: all
|
||||
tasks:
|
||||
- name: Configure base system
|
||||
import_role:
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
- hosts: all
|
||||
- name: Gather facts from host
|
||||
hosts: all
|
||||
gather_facts: yes
|
||||
tasks:
|
||||
- name: Print all available facts
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
- hosts: all
|
||||
- name: Install and configure Freeradius with TOTP
|
||||
hosts: all
|
||||
tasks:
|
||||
- name: Install and configure Freeradius with TOTP
|
||||
import_role:
|
||||
- import_role:
|
||||
name: freeradius
|
|
@ -1,5 +1,5 @@
|
|||
- hosts: ns1
|
||||
- name: Configure zone with nsupdate
|
||||
hosts: ns1
|
||||
tasks:
|
||||
- name: Configure zone with nsupdate
|
||||
import_role:
|
||||
name: nsupdate
|
||||
- import_role:
|
||||
name: nsupdate
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
- hosts: all
|
||||
- name: Check that a host is alive and reachable
|
||||
hosts: all
|
||||
tasks:
|
||||
- ping:
|
|
@ -1,6 +1,6 @@
|
|||
- hosts: localhost
|
||||
- name: Send mail
|
||||
hosts: localhost
|
||||
become: no
|
||||
tasks:
|
||||
- name: Send mail
|
||||
import_role:
|
||||
- import_role:
|
||||
name: send-mail
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
- hosts: all
|
||||
- name: Test role
|
||||
hosts: all
|
||||
tasks:
|
||||
- name: Test role
|
||||
import_role:
|
||||
- import_role:
|
||||
name: debian-base
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
- name: Ping Windows hosts
|
||||
- name: Ping Windows host
|
||||
hosts: all
|
||||
tasks:
|
||||
- name: Ping Windows hosts
|
||||
ansible.windows.win_ping:
|
||||
- ansible.windows.win_ping:
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
- hosts: all
|
||||
- name: Update windows host
|
||||
hosts: all
|
||||
serial: 1
|
||||
tasks:
|
||||
- block:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
- name: Create AWX user
|
||||
- name: Create awx user
|
||||
user:
|
||||
name: awx
|
||||
password: '*'
|
||||
|
@ -6,7 +6,7 @@
|
|||
groups: sudo
|
||||
state: present
|
||||
comment: ssh user
|
||||
- name: Adding SSH public key
|
||||
- name: Add awx SSH public key
|
||||
authorized_key:
|
||||
user: awx
|
||||
key: "{{ awx_pub_key }}"
|
||||
|
@ -14,7 +14,7 @@
|
|||
apt:
|
||||
name: sudo
|
||||
state: present
|
||||
- name: Add user to sudoers
|
||||
- name: Add awx user to sudoers
|
||||
copy:
|
||||
src: sudoers
|
||||
dest: /etc/sudoers.d/awx
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
- import_tasks: install.yml
|
||||
- import_tasks: locale.yml
|
||||
- import_tasks: tzdata.yml
|
||||
- import_tasks: motd.yml
|
||||
- import_tasks: profile.yml
|
||||
- import_tasks: vim.yml
|
||||
- import_tasks: sudoers.yml
|
||||
- import_tasks: nrpe.yml
|
||||
- import_tasks: relayhost.yml
|
||||
- import_tasks: motd.yml
|
||||
tags: [motd]
|
||||
- import_tasks: profile.yml
|
||||
tags: [profile]
|
||||
- import_tasks: vim.yml
|
||||
tags: [vim]
|
||||
- import_tasks: nrpe.yml
|
||||
tags: [nrpe]
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
- name: Install packages
|
||||
apt:
|
||||
name: nslcd
|
||||
|
@ -36,4 +35,4 @@
|
|||
- name: Restart NSLCD service
|
||||
service:
|
||||
name: nslcd
|
||||
state: restarted
|
||||
state: restarted
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
- include_tasks: auth.yml
|
||||
when: false
|
||||
- import_tasks: sudoers.yml
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
apt:
|
||||
name: sudo
|
||||
state: present
|
||||
- name: Copy sudoers configuration file
|
||||
- name: Add sysadmin to sudoers
|
||||
copy:
|
||||
src: sudoers
|
||||
dest: /etc/sudoers.d/vn
|
Loading…
Reference in New Issue