]> eyrie.org Git - kerberos/kftgt.git/commitdiff
Take advantage of update-inetd's support of \t in strings to make this a
authorRuss Allbery <rra@stanford.edu>
Wed, 18 May 2005 04:40:10 +0000 (04:40 +0000)
committerRuss Allbery <rra@stanford.edu>
Mon, 15 Mar 2010 06:05:55 +0000 (23:05 -0700)
bit more readable.

debian/kftgtd.postinst

index ec11e82043813065951f852d0316aeecf4c6e32f..d1ac6ec7a1c6fc7582a1a60c20a0f55c6ea4c7b9 100644 (file)
@@ -1,7 +1,8 @@
 #! /bin/sh -e
 
-if test "$1" = configure; then
-       update-inetd --add '2109        stream  tcp     nowait  root    /usr/sbin/tcpd /usr/sbin/kftgtd'
+if [ "$1" = configure ] ; then
+    update-inetd --add \
+        '2109\tstream\ttcp\tnowait\troot\t/usr/sbin/tcpd\t/usr/sbin/kftgtd'
 fi
 
 #DEBHELPER#