diff options
author | 2023-06-17 09:27:39 +0100 | |
---|---|---|
committer | 2023-07-24 14:42:09 +0100 | |
commit | 8016e383a15766bf19b118e25f3a4fac9c48261f (patch) | |
tree | a747703bffc8c91438d469c330e84cb93f397b8c | |
parent | Ensure renewal-hooks deploy directory exists before syncing certs (diff) |
Enable the default .bashrc for root
-rw-r--r-- | roles/common/tasks/main.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index b0537e5..26138a5 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -66,3 +66,10 @@ group: root tags: - role::common + +- name: Enable default .bashrc for root + copy: + src: /etc/skel/.bashrc + dest: /root/.bashrc + tags: + - role::common |