new/external/rkscript/S00mountall.sh
2025-05-10 21:58:58 +08:00

29 lines
427 B
Bash
Executable File

#!/bin/sh
### BEGIN INIT INFO
# Provides: mount-all
# Required-Start:
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Description: Mount all internal partitions in /etc/fstab
### END INIT INFO
case "$1" in
start|"")
mount-helper
;;
restart|reload|force-reload)
echo "Error: argument '$1' not supported" >&2
exit 3
;;
stop|status)
# No-op
;;
*)
echo "Usage: start" >&2
exit 3
;;
esac
: