27 lines
738 B
SYSTEMD
27 lines
738 B
SYSTEMD
|
[Unit]
|
||
|
Description=Git Daemon
|
||
|
|
||
|
[Service]
|
||
|
# added automatically, for details please see
|
||
|
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
||
|
ProtectSystem=full
|
||
|
PrivateDevices=true
|
||
|
ProtectHostname=true
|
||
|
ProtectClock=true
|
||
|
ProtectKernelTunables=true
|
||
|
ProtectKernelModules=true
|
||
|
ProtectKernelLogs=true
|
||
|
ProtectControlGroups=true
|
||
|
RestrictRealtime=true
|
||
|
# end of automatic additions
|
||
|
EnvironmentFile=-/etc/sysconfig/git-daemon
|
||
|
ExecStart=/bin/bash -c 'exec git daemon --reuseaddr --base-path=$${GIT_DAEMON_BASE_PATH:-/srv/git/} --user=$${GIT_DAEMON_USER:-git-daemon} --group=$${GIT_DAEMON_GROUP:-git-daemon} $GIT_DAEMON_ARGS'
|
||
|
|
||
|
Restart=always
|
||
|
RestartSec=500ms
|
||
|
|
||
|
SyslogIdentifier=git-daemon
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|