]> git.pld-linux.org Git - packages/pdnsd.git/commitdiff
- up to 1.2.8 auto/th/pdnsd-1_2_8-1 auto/ti/pdnsd-1_2_8-1
authoralucard <alucard@pld-linux.org>
Sat, 17 Jul 2010 18:16:40 +0000 (18:16 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- changes in pdnsd.init so it not clashes with our powerdns setup
- root servers' patch not needed any more (discovering roots feature)

Changed files:
    pdnsd.init -> 1.16
    pdnsd.spec -> 1.70

pdnsd.init
pdnsd.spec

index b1c55844fec6b3df90ad44bbc40b9a4b625b6111..4dfc2faa043a4e6589196c70cd6388e7072a72d1 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# pdns         Proxy DNS Daemon
+# pdnsd                Proxy DNS Daemon
 #
 # chkconfig:   345 14 89
 #
@@ -37,23 +37,23 @@ RETVAL=0
 case "$1" in
   start)
        # Check if the service is already running?
-       if [ ! -f /var/lock/subsys/pdns ]; then
-               msg_starting Pdns
+       if [ ! -f /var/lock/subsys/pdnsd ]; then
+               msg_starting Pdnsd
                daemon pdnsd --daemon -p /var/run/pdnsd.pid $STATUS $DEBUG $VERBOSE
                RETVAL=$?
-               [ $RETVAL -eq 0 ] && touch /var/lock/subsys/pdns
+               [ $RETVAL -eq 0 ] && touch /var/lock/subsys/pdnsd
        else
-               msg_already_running Pdns
+               msg_already_running Pdnsd
        fi
        ;;
   stop)
-       if [ -f /var/lock/subsys/pdns ]; then
+       if [ -f /var/lock/subsys/pdnsd ]; then
                # Stop daemons.
-               msg_stopping Pdns
+               msg_stopping Pdnsd
                killproc pdnsd
-               rm -f /var/lock/subsys/pdns >/dev/null 2>&1
+               rm -f /var/lock/subsys/pdnsd >/dev/null 2>&1
        else
-               msg_not_running Pdns
+               msg_not_running Pdnsd
        fi
        ;;
   restart)
@@ -62,12 +62,12 @@ case "$1" in
        exit $?
        ;;
   reload|force-reload)
-       if [ -f /var/lock/subsys/pdns ]; then
-               msg_reloading Pdns
+       if [ -f /var/lock/subsys/pdnsd ]; then
+               msg_reloading Pdnsd
                killproc pdnsd -HUP
                RETVAL=$?
        else
-               msg_not_running Pdns >&2
+               msg_not_running Pdnsd >&2
                exit 7
        fi
        ;;
index 21f2e9403df84838ebaf7d1642a5381dbfa52fea..bf868d60a2603e74ec4cf92b0f2658582c2b8ef8 100644 (file)
@@ -2,12 +2,12 @@
 Summary:       A caching dns proxy for small networks or dialin accounts
 Summary(pl.UTF-8):     DNS proxy serwer dla małej sieci lub jednostki z połączeniem dialup
 Name:          pdnsd
-Version:       1.2.7
-Release:       3
+Version:       1.2.8
+Release:       1
 License:       GPL
 Group:         Networking/Daemons
 Source0:       http://www.phys.uu.nl/~rombouts/pdnsd/releases/%{name}-%{version}-%{par}.tar.gz
-# Source0-md5: 114b3b21b09b43cbfcccdde726b84c12
+# Source0-md5: 779c5d19576e561fbf2455de435e5597
 Source1:       %{name}.init
 Source2:       %{name}.sysconfig
 Patch0:                %{name}-ac_am.patch
@@ -46,7 +46,7 @@ dialup).
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
+#%patch1 -p1
 %patch2 -p1
 
 %build
This page took 0.140807 seconds and 4 git commands to generate.