shishi-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS shishi/debian


From: shishi-commit
Subject: CVS shishi/debian
Date: Wed, 21 Dec 2005 16:40:28 +0100

Update of /home/cvs/shishi/debian
In directory dopio:/tmp/cvs-serv7206

Modified Files:
        control 
Added Files:
        shishid.default shishid.init.d shishid.install 
        shishid.manpages 
Removed Files:
        shishi-kdc.default shishi-kdc.init.d shishi-kdc.install 
        shishi-kdc.manpages 
Log Message:
Fix.

--- /home/cvs/shishi/debian/control     2005/12/21 12:25:06     1.7
+++ /home/cvs/shishi/debian/control     2005/12/21 15:40:28     1.8
@@ -77,7 +77,7 @@
 Section: libs
 Architecture: any
 Depends: ${shlibs:Depends}
-Suggests: shishi-kdc
+Suggests: shishid
 Description: Library for Shishi KDC database
  Shishi is an implementation of the Kerberos 5 network authentication
  system.
@@ -97,7 +97,7 @@
  This package contain all files necessary for developing programs with
  Shishi KDC database support.
 
-Package: shishi-kdc
+Package: shishid
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Suggests: shishi-doc

--- /home/cvs/shishi/debian/shishid.default     2005/12/21 15:40:28     NONE
+++ /home/cvs/shishi/debian/shishid.default     2005/12/21 15:40:28     1.1
# Defaults for /etc/init.d/shishi

# Additional options that are passed to shishid.
DAEMON_OPTS=""
--- /home/cvs/shishi/debian/shishid.init.d      2005/12/21 15:40:28     NONE
+++ /home/cvs/shishi/debian/shishid.init.d      2005/12/21 15:40:28     1.1
#! /bin/sh

# Copyright (C) 2005  Simon Josefsson
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/shishid
NAME=shishid
DESC="Shishi daemon"

test -x $DAEMON || exit 0

# Include Shishi defaults if available
if [ -f /etc/default/shishid ] ; then
        . /etc/default/shishid
fi

set -e

case "$1" in
  start)
        echo -n "Starting $DESC: "
        start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
                --exec $DAEMON -- $DAEMON_OPTS
        echo "$NAME."
        ;;
  stop)
        echo -n "Stopping $DESC: "
        start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
                --exec $DAEMON
        echo "$NAME."
        ;;
  restart|force-reload)
        #
        #       If the "reload" option is implemented, move the "force-reload"
        #       option to the "reload" entry above. If not, "force-reload" is
        #       just the same as "restart".
        #
        echo -n "Restarting $DESC: "
        start-stop-daemon --stop --quiet --pidfile \
                /var/run/$NAME.pid --exec $DAEMON
        sleep 1
        start-stop-daemon --start --quiet --pidfile \
                /var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS
        echo "$NAME."
        ;;
  *)
        N=/etc/init.d/$NAME
        echo "Usage: $N {start|stop|restart|force-reload}" >&2
        exit 1
        ;;
esac

exit 0
--- /home/cvs/shishi/debian/shishid.install     2005/12/21 15:40:28     NONE
+++ /home/cvs/shishi/debian/shishid.install     2005/12/21 15:40:28     1.1
debian/tmp/usr/bin/shisa
debian/tmp/usr/sbin/shishid
--- /home/cvs/shishi/debian/shishid.manpages    2005/12/21 15:40:28     NONE
+++ /home/cvs/shishi/debian/shishid.manpages    2005/12/21 15:40:28     1.1
debian/tmp/usr/share/man/man1/shisa.1
debian/tmp/usr/share/man/man1/shishid.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]