linuxOS_AP05/external/rkscript/S21mountall.sh
2025-06-02 13:59:07 +08:00

27 lines
392 B
Bash
Executable File

#!/bin/sh
### BEGIN INIT INFO
# Provides: mount-all
# 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
: