summaryrefslogtreecommitdiff
path: root/docker/integration_test/web/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/integration_test/web/setup.sh')
-rwxr-xr-xdocker/integration_test/web/setup.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/integration_test/web/setup.sh b/docker/integration_test/web/setup.sh
index bd6c805..d8093b1 100755
--- a/docker/integration_test/web/setup.sh
+++ b/docker/integration_test/web/setup.sh
@@ -7,9 +7,9 @@ echo "session_max_age_days = 7" >> Rocket.toml
echo "ldap_url = \"$LDAP_URL\"" >> Rocket.toml
echo "ldap_users = \"ou=users,dc=example,dc=org\"" >> Rocket.toml
echo "ldap_filter = \"(objectClass=posixAccount)\"" >> Rocket.toml
-echo "git_server_root = \"/git/repos\"" >> Rocket.toml
+echo "git_server_root = \"/srv/git\"" >> Rocket.toml
echo "authorized_keys = \"/git/auth/authorized_keys\"" >> Rocket.toml
-echo "git_hook = \"/git/repos/eyeballs-githook\"" >> Rocket.toml
+echo "git_hook = \"/srv/git/eyeballs-githook\"" >> Rocket.toml
echo "[default.databases.eyeballs]" >> Rocket.toml
echo "url = \"$DB_URL\"" >> Rocket.toml
@@ -20,6 +20,6 @@ echo "Host remote_git" > /app/.ssh/config
echo " StrictHostKeyChecking no" >> /app/.ssh/config
# Hardlinks cannot cross devices, so copy to the /git/repos mount.
-cp /app/eyeballs-githook /git/repos/eyeballs-githook
+cp /app/eyeballs-githook /srv/git/eyeballs-githook
exec ./eyeballs