diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2018-09-25 20:51:37 +0200 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2018-09-25 21:05:52 +0200 |
commit | 32d08914580a084c47a087704efece93bd790f0c (patch) | |
tree | 45879c6c8d8853ae8ebbb004860f08b27d59d1e3 /roles/root_env | |
parent | 91b2e28e5252413b8cd74c670bcec50503138cfb (diff) | |
download | labitat-ansible-32d08914580a084c47a087704efece93bd790f0c.tar.gz labitat-ansible-32d08914580a084c47a087704efece93bd790f0c.tar.xz labitat-ansible-32d08914580a084c47a087704efece93bd790f0c.zip |
Keep consistent ordering of rules
Do
- name: ...
module:
dest/path: 'destination on target'
src: ...
state: ...
owner: ...
group: ...
mode: ...
with_*: ...
notify: ...
tags: ...
Diffstat (limited to 'roles/root_env')
-rw-r--r-- | roles/root_env/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/root_env/tasks/main.yml b/roles/root_env/tasks/main.yml index a4cee39..7b20fd1 100644 --- a/roles/root_env/tasks/main.yml +++ b/roles/root_env/tasks/main.yml @@ -1,16 +1,16 @@ --- - name: root .bash_profile copy: + dest: '/root/.bash_profile' src: files/bash_profile.sh - dest: /root/.bash_profile owner: root group: root mode: 0644 - name: root .bashrc template: + dest: '/root/.bashrc' src: files/bashrc.sh.j2 - dest: /root/.bashrc owner: root group: root mode: 0644 |