summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>2011-08-26 04:39:03 -0300
committerGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>2011-08-28 04:07:04 -0300
commit8c995ee6573b284dbef4c86515765175fbf0e6ce (patch)
treed5fe24d16bb8a775a7428076ac8a6f6ad0f7f383 /configs
parent219b43a0bf8ef65c4edc1516f1a408ae8fa3607c (diff)
[archiso] Change location of nbd_client.pid
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'configs')
-rw-r--r--configs/releng/root-image/etc/rc.d/functions.d/omit_kill_nbd_client4
1 files changed, 2 insertions, 2 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
index b72f168..60a1192 100644
--- 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
@@ -1,6 +1,6 @@
-if [[ -f /run/nbd_client.pid ]]; then
+if [[ -f /run/archiso/nbd_client.pid ]]; then
omit_kill_nbd_client() {
- add_omit_pids $(< /run/nbd_client.pid)
+ add_omit_pids $(< /run/archiso/nbd_client.pid)
}
add_hook shutdown_prekillall omit_kill_nbd_client