autofs service: clear lockfile before start

autofs uses a lock file in /tmp to check if it's running -- unclean
shutdown breaks the service until one manually removes it.
This commit is contained in:
Nikolay Amiantov 2016-03-14 00:58:23 +03:00
parent 7da494b8ae
commit 7e57e2c0fb

View file

@ -79,6 +79,11 @@ in
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
preStart = ''
# There should be only one autofs service managed by systemd, so this should be safe.
rm -f /tmp/autofs-running
'';
serviceConfig = {
ExecStart = "${pkgs.autofs5}/sbin/automount ${if cfg.debug then "-d" else ""} -f -t ${builtins.toString cfg.timeout} ${autoMaster} ${if cfg.debug then "-l7" else ""}";
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";