Whitespace cleanup to get in sync with AniNIX/Uniglot hooks
This commit is contained in:
		@@ -58,10 +58,14 @@
 | 
			
		||||
    ignore_errors: yes
 | 
			
		||||
    register: root_password_test
 | 
			
		||||
    vars:
 | 
			
		||||
      ansible_become_user: "{{ item }}"
 | 
			
		||||
      ansible_become_method: su
 | 
			
		||||
      ansible_become_password: "{{ passwords[inventory_hostname] }}"
 | 
			
		||||
    become: yes
 | 
			
		||||
    command: id
 | 
			
		||||
    loop:
 | 
			
		||||
      - root
 | 
			
		||||
      - "{{ ansible_user_id }}"
 | 
			
		||||
 | 
			
		||||
  - name: Define passwords
 | 
			
		||||
    vars:
 | 
			
		||||
@@ -70,7 +74,7 @@
 | 
			
		||||
    become: yes
 | 
			
		||||
    when: root_password_test.rc is not defined or root_password_test.rc != 0
 | 
			
		||||
    command:
 | 
			
		||||
      cmd: /bin/bash -l -c "printf '%s\n%s\n' '{{ passwords[inventory_hostname] }}' '{{ passwords[inventory_hostname] }}' | passwd {{ item }}"
 | 
			
		||||
      cmd: /bin/bash -l -c "echo '{{item}}:{{ passwords[inventory_hostname] }}' | chpasswd {{ item }}"
 | 
			
		||||
    loop:
 | 
			
		||||
      - root
 | 
			
		||||
      - "{{ ansible_user_id }}"
 | 
			
		||||
@@ -163,24 +167,6 @@
 | 
			
		||||
    hostname:
 | 
			
		||||
      name: "{{ inventory_hostname }}.{{ replica_domain }}"
 | 
			
		||||
 | 
			
		||||
  - name: Set Bash MOTD
 | 
			
		||||
    become: yes
 | 
			
		||||
    copy:
 | 
			
		||||
      src: "motd/{{ inventory_hostname }}"
 | 
			
		||||
      dest: /etc/bash.motd
 | 
			
		||||
      owner: root
 | 
			
		||||
      group: root
 | 
			
		||||
      mode: 0644
 | 
			
		||||
 | 
			
		||||
  - name: Nullify overall MOTD
 | 
			
		||||
    become: yes
 | 
			
		||||
    copy:
 | 
			
		||||
      src: /dev/null
 | 
			
		||||
      dest: /etc/motd
 | 
			
		||||
      owner: root
 | 
			
		||||
      group: root
 | 
			
		||||
      mode: 0644
 | 
			
		||||
 | 
			
		||||
  - include: archlinux-network.yml
 | 
			
		||||
    when: ansible_os_family == "Archlinux"
 | 
			
		||||
 | 
			
		||||
@@ -190,3 +176,5 @@
 | 
			
		||||
  - include: dns.yml
 | 
			
		||||
 | 
			
		||||
  - include: ntp.yml
 | 
			
		||||
 | 
			
		||||
  - include: bash.yml
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user