summaryrefslogtreecommitdiff
path: root/configs/releng/root-image/etc/rc.d/functions.d/omit_kill_nbd_client
diff options
context:
space:
mode:
Diffstat (limited to 'configs/releng/root-image/etc/rc.d/functions.d/omit_kill_nbd_client')
-rw-r--r--configs/releng/root-image/etc/rc.d/functions.d/omit_kill_nbd_client8
1 files changed, 8 insertions, 0 deletions
diff --git a/configs/releng/root-image/etc/rc.d/functions.d/omit_kill_nbd_client b/configs/releng/root-image/etc/rc.d/functions.d/omit_kill_nbd_client
new file mode 100644
index 0000000..b72f168
--- /dev/null
+++ b/configs/releng/root-image/etc/rc.d/functions.d/omit_kill_nbd_client
@@ -0,0 +1,8 @@
+if [[ -f /run/nbd_client.pid ]]; then
+ omit_kill_nbd_client() {
+ add_omit_pids $(< /run/nbd_client.pid)
+ }
+
+ add_hook shutdown_prekillall omit_kill_nbd_client
+ add_hook single_prekillall omit_kill_nbd_client
+fi