diff options
author | binary <me@rgoncalves.se> | 2020-08-11 11:28:18 +0200 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2020-08-11 11:28:18 +0200 |
commit | e14b4f0a4b4a89b2a5cd4a2989496b8c4e7740e8 (patch) | |
tree | 1b8b3225f85fde3cdeacda8423830ec6f72a0ee9 /roles/setup_git | |
parent | 87a565c0481a58e0d5d8a2a3e33459f1af132ca6 (diff) | |
parent | 9e4cff178875d30b04236b52942e83459a641560 (diff) | |
download | infrastructure-e14b4f0a4b4a89b2a5cd4a2989496b8c4e7740e8.tar.gz |
refactored with new files
Diffstat (limited to 'roles/setup_git')
-rw-r--r-- | roles/setup_git/templates/gitweb.service | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/roles/setup_git/templates/gitweb.service b/roles/setup_git/templates/gitweb.service new file mode 100644 index 0000000..0b65b49 --- /dev/null +++ b/roles/setup_git/templates/gitweb.service @@ -0,0 +1,28 @@ + +# =========================================================================== # +# _ __ _ __ +# __ ______ (_) /_ ____ _(_) /_ +# / / / / __ \/ / __/ / __ `/ / __/ +# / /_/ / / / / / /__ / /_/ / / /_ +# \__,_/_/ /_/_/\__(_) \__, /_/\__/ +# /____/ +# +# =========================================================================== # + +[Unit] +Description=Gitweb interface for git repositories + +[Service] +Type=forking +User={{ git_user }} +Group={{ git_group }} +WorkingDirectory={{ git_directory_path }}/{{ git_gitweb_default_repository }} +ExecStart=/usr/bin/git instaweb --port={{ g_port_gitweb_gui }} +ExecStop=/bin/kill -s HUP $MAINPID +RuntimeDirectoryMode=0700 + +Restart=on-failure +RestartSec=60s + +[Install] +WantedBy=default.target |