Move app files out to app dirs

This commit is contained in:
Ricky Elrod 2013-03-28 19:32:21 +00:00
parent 54e6599a1b
commit 3808c37ac6
5 changed files with 4 additions and 4 deletions

View file

@ -256,7 +256,7 @@
shell: source /etc/profile.d/phabricator.sh
- name: Configure Apache
template: src=$files/gitlab/phabricator-vhost.conf dest=/etc/httpd/conf.d/phabricator.conf
template: src=$files/phabricator/phabricator-vhost.conf dest=/etc/httpd/conf.d/phabricator.conf
- name: Graceful Apache
command: service httpd graceful
@ -274,7 +274,7 @@
file: state=directory path=/srv/www/facebook/phabricator/conf/custom
- name: Place a starting-point custom config in /srv/www/facebook/phabricator/conf/custom/myconfig.conf.php
template: src=$files/gitlab/phabricator.conf.php dest=/srv/www/facebook/phabricator/conf/custom/myconfig.conf.php
template: src=$files/phabricator/phabricator.conf.php dest=/srv/www/facebook/phabricator/conf/custom/myconfig.conf.php
- name: Create the databases and bring them up to date
action: command chdir=/srv/www/facebook/phabricator ./bin/storage upgrade --force
@ -306,10 +306,10 @@
file: state=directory path=/srv/www/trac
- name: Trac WSGI File
template: src=$files/gitlab/trac.wsgi dest=/srv/www/trac/trac.wsgi
template: src=$files/trac/trac.wsgi dest=/srv/www/trac/trac.wsgi
- name: Apache config
template: src=$files/trac-vhost.conf dest=/etc/httpd/conf.d/trac.conf
template: src=$files/trac/trac-vhost.conf dest=/etc/httpd/conf.d/trac.conf
- name: Apache restart
command: service httpd restart