]> git.pld-linux.org Git - packages/pure-ftpd.git/commitdiff
Rel 5; pure-uploadscript retval has meaning only if it is enabled
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Wed, 1 Sep 2021 13:38:10 +0000 (15:38 +0200)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Wed, 1 Sep 2021 13:38:10 +0000 (15:38 +0200)
pure-ftpd.init
pure-ftpd.spec

index 2805f1ede806b5328155c3976b166a2766c1826c..43a356866d3405f6d8d7887a955d9ba0eaf2ea1d 100644 (file)
@@ -133,9 +133,14 @@ case "$1" in
        ;;
   status)
        status pure-ftpd
        ;;
   status)
        status pure-ftpd
-       status pure-uploadscript
        RETVAL=$?
        RETVAL=$?
-       if [ $RETVAL -eq 0 ]; then
+       PUREFTPDRETVAL=$RETVAL
+
+       status pure-uploadscript
+       if [ -n "$UPLOADSCRIPT" ]; then
+         RETVAL=$?
+       fi
+       if [ $PUREFTPDRETVAL -eq 0 ]; then
                pure-ftpwho
        fi
        ;;
                pure-ftpwho
        fi
        ;;
index a2b2071f35ed2b40ba0adff9c922b895dad4adab..9c09bbd69ae075d0766612f6f6f402d400253421 100644 (file)
@@ -9,7 +9,7 @@
 %bcond_without tls             # disable SSL/TLS support
 %bcond_without cap             # disable capabilities
 
 %bcond_without tls             # disable SSL/TLS support
 %bcond_without cap             # disable capabilities
 
-%define        rel     4
+%define        rel     5
 Summary:       Small, fast and secure FTP server
 Summary(pl.UTF-8):     Mały, szybki i bezpieczny serwer FTP
 Name:          pure-ftpd
 Summary:       Small, fast and secure FTP server
 Summary(pl.UTF-8):     Mały, szybki i bezpieczny serwer FTP
 Name:          pure-ftpd
This page took 0.145787 seconds and 4 git commands to generate.