diff options
Diffstat (limited to 'saslauthd')
-rw-r--r-- | saslauthd/__init__.py | 2 | ||||
-rw-r--r-- | saslauthd/kolab-saslauthd.sysvinit | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/saslauthd/__init__.py b/saslauthd/__init__.py index 9756c54..c0951cb 100644 --- a/saslauthd/__init__.py +++ b/saslauthd/__init__.py @@ -55,7 +55,7 @@ class SASLAuthDaemon(object): daemon_group.add_option( "-p", "--pid-file", dest = "pidfile", action = "store", - default = "/var/run/kolabd/kolabd.pid", + default = "/var/run/kolab-saslauthd/kolab-saslauthd.pid", help = _("Path to the PID file to use.")) conf.finalize_conf() diff --git a/saslauthd/kolab-saslauthd.sysvinit b/saslauthd/kolab-saslauthd.sysvinit index a72eab9..f924957 100644 --- a/saslauthd/kolab-saslauthd.sysvinit +++ b/saslauthd/kolab-saslauthd.sysvinit @@ -39,7 +39,7 @@ pidfile=/var/run/kolab-saslauthd/kolab-saslauthd.pid start() { [ -x $path ] || exit 5 echo -n $"Starting $prog: " - daemon $DAEMONOPTS $path $FLAGS + daemon $DAEMONOPTS $path -p $pidfile $FLAGS RETVAL=$? echo [ $RETVAL -eq 0 ] && touch $lockfile |