]> git.pld-linux.org Git - packages/rc-scripts.git/blobdiff - 95229.patch
- up to 0.4.19
[packages/rc-scripts.git] / 95229.patch
diff --git a/95229.patch b/95229.patch
deleted file mode 100644 (file)
index 4945bca..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
---- /etc/init.d/functions~     2018-09-07 16:57:25.000000000 +0300
-+++ /etc/init.d/functions      2018-09-07 17:02:41.443552246 +0300
-@@ -884,12 +883,19 @@
-                       # 3. kill with KILL, wait $waitretry
-                       retry="--retry ${sig#-}/${delay}/${sig#-}/${waittime}/KILL/${waitretry}"
-               fi
--              /sbin/start-stop-daemon -q --stop \
--                      $retry \
--                      ${waitname:+--name $waitname} \
--                      -s ${sig#-} \
--                      ${pidfile:+--pidfile $pidfile}
--              result=$?
-+
-+              # expand if pidfile has multiple pids
-+              result=0
-+              local pid
-+
-+              for pid in $(cat $pidfile); do
-+                      /sbin/start-stop-daemon -q --stop \
-+                              $retry \
-+                              ${waitname:+--name $waitname} \
-+                              -s ${sig#-} \
-+                              --pid $pid || result=$?
-+              done
-+
-               if [ "$result" -eq 0 ]; then
-                       ok
-               else
This page took 0.027963 seconds and 4 git commands to generate.