You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
571 B
34 lines
571 B
- copy: |
|
src: files/motd.{{ ansible_hostname }} |
|
dest: /etc/motd |
|
owner: root |
|
group: root |
|
mode: 0644 |
|
|
|
- copy: |
|
src: files/hosts |
|
dest: /etc/hosts |
|
owner: root |
|
group: root |
|
mode: 0644 |
|
|
|
- copy: |
|
src: files/sshd_config |
|
dest: /etc/ssh/sshd_config |
|
owner: root |
|
group: root |
|
mode: 0600 |
|
|
|
- copy: |
|
src: files/resolv.conf |
|
dest: /etc/resolv.conf |
|
owner: root |
|
group: root |
|
mode: 0644 |
|
|
|
- copy: |
|
src: files/yum_debug_dump.txt.gz |
|
dest: /root/yum_debug_dump.txt.gz |
|
owner: root |
|
group: root |
|
mode: 0600
|
|
|