21 lines
488 B
SYSTEMD
21 lines
488 B
SYSTEMD
|
[Unit]
|
||
|
Description=Vsftpd ftp daemon
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
# added automatically, for details please see
|
||
|
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
||
|
PrivateDevices=true
|
||
|
ProtectHostname=true
|
||
|
ProtectClock=true
|
||
|
ProtectKernelTunables=true
|
||
|
ProtectKernelModules=true
|
||
|
ProtectKernelLogs=true
|
||
|
ProtectControlGroups=true
|
||
|
RestrictRealtime=true
|
||
|
# end of automatic additions
|
||
|
ExecStart=/usr/sbin/vsftpd /etc/vsftpd.conf
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|