diff options
author | Christian Franke <nobody@nowhere.ws> | 2015-10-26 20:38:25 +0100 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2015-10-26 20:38:25 +0100 |
commit | f38450f9f2037244300082f3e4211b790ac87058 (patch) | |
tree | 074ffa7d0512e099742641df8065d7b4139a6e99 /roles/sublab_web/templates/website-rebuild.sh.j2 | |
parent | 4e5034f57b54f1a5052fd859d3419002a477e628 (diff) |
- add hooks between webserver and gitserver:
git->website and wiki->git work now,
git->wiki is still missing,
https://ikiwiki.info/tips/Hosting_Ikiwiki_and_master_git_repository_on_different_machines/
should contain the right info for that
- actually configure repo_service
- replace LDAP auth with dummy password auth for now
Diffstat (limited to 'roles/sublab_web/templates/website-rebuild.sh.j2')
-rw-r--r-- | roles/sublab_web/templates/website-rebuild.sh.j2 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/sublab_web/templates/website-rebuild.sh.j2 b/roles/sublab_web/templates/website-rebuild.sh.j2 index ac29e3d..5cd3964 100644 --- a/roles/sublab_web/templates/website-rebuild.sh.j2 +++ b/roles/sublab_web/templates/website-rebuild.sh.j2 @@ -3,6 +3,10 @@ # {{ ansible_managed }} # +if [ "$USER" != "sublab_web" ]; then + exec sudo -u sublab_web /var/www/{{sublab_web_server_name}}/website-rebuild.sh +fi + cd /var/www/{{sublab_web_server_name}}/htdocs if [ x"$1" != x"-l" ]; then |