Fix mount-fix issue

This commit is contained in:
Cameron Thompson
2025-01-28 19:49:42 -05:00
parent 3b2f4df801
commit 3d0a760e13
7 changed files with 69 additions and 79 deletions

View File

@@ -0,0 +1,18 @@
#!/bin/sh /etc/rc.common
START=04
start() {
# mount the bind mount as rw
/bin/mount -o remount,rw /etc/rc.d
}
stop() {
# mount the bind mount as ro
/bin/mount -o remount,ro /etc/rc.d
}
restart() {
stop
start
}