diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-09-06 12:00:41 +0000 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-10-01 13:55:38 +0000 |
commit | c50469ade828c2bf3536c12262040a90e103b2fd (patch) | |
tree | ed31a38915c927ea947771004bf18caa59e22568 | |
parent | 4dcc5ae689c205230bbcdc16a52a56de667d5029 (diff) | |
download | ansible-c50469ade828c2bf3536c12262040a90e103b2fd.tar.gz ansible-c50469ade828c2bf3536c12262040a90e103b2fd.tar.xz ansible-c50469ade828c2bf3536c12262040a90e103b2fd.zip |
The httpd init script should be executable
-rw-r--r-- | tasks/apache.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tasks/apache.yml b/tasks/apache.yml index 62d08c387..77266f070 100644 --- a/tasks/apache.yml +++ b/tasks/apache.yml @@ -21,6 +21,7 @@ # install hash randomization hotfix - name: hotfix - copy over new httpd init script copy: src=$files/hotfix/httpd/httpd.init dest=/etc/init.d/httpd + owner=root group=root mode=0755 notify: - restart apache tags: |