diff options
author | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2014-11-10 21:51:44 +0200 |
---|---|---|
committer | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2014-11-10 21:51:44 +0200 |
commit | a7cd27edd7761a375740ed7fc1d8619c13049d68 (patch) | |
tree | 4327472cd4c73a2ddf9380b301aec71d37d0ada8 /main/zoneminder/0001-scripts-BusyBox-compatibility.patch | |
parent | cf862cafd22810fe019dd94d386467c15e573d27 (diff) | |
download | aports-a7cd27edd7761a375740ed7fc1d8619c13049d68.tar.bz2 aports-a7cd27edd7761a375740ed7fc1d8619c13049d68.tar.xz |
main/zoneminder: upgrade to 1.28.0
Diffstat (limited to 'main/zoneminder/0001-scripts-BusyBox-compatibility.patch')
-rw-r--r-- | main/zoneminder/0001-scripts-BusyBox-compatibility.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/main/zoneminder/0001-scripts-BusyBox-compatibility.patch b/main/zoneminder/0001-scripts-BusyBox-compatibility.patch deleted file mode 100644 index 7ef1031b69..0000000000 --- a/main/zoneminder/0001-scripts-BusyBox-compatibility.patch +++ /dev/null @@ -1,34 +0,0 @@ -From b2323cb36d2b6c6dc5fe064c5dedfb1264179283 Mon Sep 17 00:00:00 2001 -From: Carlo Landmeter <clandmeter@gmail.com> -Date: Wed, 25 Jun 2014 11:19:15 +0200 -Subject: [PATCH] scripts: BusyBox compatibility - -BusyBox killall does not support long options using short options instead ---- - scripts/zmdc.pl.in | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/scripts/zmdc.pl.in b/scripts/zmdc.pl.in -index c891553..579e093 100644 ---- a/scripts/zmdc.pl.in -+++ b/scripts/zmdc.pl.in -@@ -784,14 +784,14 @@ sub killAll - sleep( $delay ); - foreach my $daemon ( @daemons ) - { -- my $cmd = "killall --quiet --signal TERM $daemon"; -+ my $cmd = "killall -q -s TERM $daemon"; - Debug( $cmd ); - qx( $cmd ); - } - sleep( $delay ); - foreach my $daemon ( @daemons ) - { -- my $cmd = "killall --quiet --signal KILL $daemon"; -+ my $cmd = "killall -q -s KILL $daemon"; - Debug( $cmd ); - qx( $cmd ); - } --- -2.0.0 - |