diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-04-09 20:36:21 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-04-09 20:36:21 -0400 |
commit | e9084254447d25480fac3818d042175d716db48f (patch) | |
tree | 368917ac30d4b34bec89a03857b03a060337fc3a /roles/common | |
parent | 36de211ca5ff9a2c0add03ff923a5d43788c0ae6 (diff) | |
download | infra-e9084254447d25480fac3818d042175d716db48f.tar.gz infra-e9084254447d25480fac3818d042175d716db48f.zip |
common: create a /srv/ directory
Diffstat (limited to 'roles/common')
-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 d4c2347..58b71b2 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -64,6 +64,13 @@ tags: - dependencies +- name: Create /srv directory + file: path=/src/http/cgit + state=directory + owner=root + group=root + mode=0775 + - name: timezone - configure /etc/timezone copy: content: "{{ common_timezone | regex_replace('$', '\n') }}" |