aboutsummaryrefslogtreecommitdiffstats
path: root/main/lxc/bb-shutdown.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/lxc/bb-shutdown.patch')
-rw-r--r--main/lxc/bb-shutdown.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/main/lxc/bb-shutdown.patch b/main/lxc/bb-shutdown.patch
deleted file mode 100644
index 4063032159..0000000000
--- a/main/lxc/bb-shutdown.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- ./src/lxc/lxc-shutdown.in.orig 2013-04-15 07:43:04.709177850 +0000
-+++ ./src/lxc/lxc-shutdown.in 2013-04-15 07:45:43.213958405 +0000
-@@ -118,11 +118,21 @@
- exit 1
- fi
-
-+signal_reboot=INT
-+signal_poweroff=PWR
-+init_exe=$(readlink -f /proc/$pid/exe)
-+case ${init_exe} in
-+ */busybox)
-+ signal_reboot=TERM
-+ signal_poweroff=USR2
-+ ;;
-+esac
-+
- if [ $reboot -eq 1 ]; then
-- kill -s INT $pid
-+ kill -s $signal_reboot $pid
- exit 0
- else
-- kill -s PWR $pid
-+ kill -s $signal_poweroff $pid
- fi
-
- if [ $dowait -eq 0 ]; then