forked from pool/bitlbee
Automatic systemd hardening effort by the security team. This has not been tested. For details please see https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort OBS-URL: https://build.opensuse.org/request/show/914366 OBS-URL: https://build.opensuse.org/package/show/server:irc/bitlbee?expand=0&rev=45
40 lines
972 B
Plaintext
40 lines
972 B
Plaintext
# Copyright (c) 1995-2015 SUSE Linux GmbH, Nuernberg, Germany.
|
|
# All rights reserved.
|
|
#
|
|
# Author: Martin Caj <mcaj@suse.cz>
|
|
#
|
|
# /usr/lib/systemd/system/bitlbee-server.service
|
|
#
|
|
# and it's symbolic link
|
|
#
|
|
# /usr/sbin/rcbitlbee
|
|
|
|
[Unit]
|
|
Description=Bitblee Daemon the IM to IRC gateway
|
|
After=network.target
|
|
|
|
[Service]
|
|
# added automatically, for details please see
|
|
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
|
ProtectSystem=full
|
|
ProtectHome=read-only
|
|
PrivateDevices=true
|
|
ProtectHostname=true
|
|
ProtectClock=true
|
|
ProtectKernelTunables=true
|
|
ProtectKernelModules=true
|
|
ProtectKernelLogs=true
|
|
ProtectControlGroups=true
|
|
RestrictRealtime=true
|
|
# end of automatic additions
|
|
Type=forking
|
|
ExecStartPre=/usr/bin/mkdir -p /run/bitlbee
|
|
ExecStartPre=/usr/bin/chown bitlbee.bitlbee /run/bitlbee
|
|
ExecStart=/usr/sbin/bitlbee -F -u bitlbee
|
|
PIDFile=/run/bitlbee/bitlbee.pid
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|