aboutsummaryrefslogtreecommitdiffstats
path: root/menu/update-menus
diff options
context:
space:
mode:
Diffstat (limited to 'menu/update-menus')
-rwxr-xr-xmenu/update-menus40
1 files changed, 40 insertions, 0 deletions
diff --git a/menu/update-menus b/menu/update-menus
new file mode 100755
index 0000000..c03fde5
--- /dev/null
+++ b/menu/update-menus
@@ -0,0 +1,40 @@
+#!/bin/sh
+
+usage() {
+echo "Usage: update-menus [options]"
+echo " -v Be verbose about what is going on."
+echo " -u generate only user menu (useful for root user)"
+echo " -h, --help This message."
+
+exit 0
+}
+
+
+VERBOSE=0
+
+if [ "$UID" == "0" ]; then
+ USER_MENU=0
+else
+ USER_MENU=1
+fi
+
+if [ $# != 0 ]; then
+
+while getopts ":vunh" option
+do
+ case $option in
+ v ) VERBOSE=1 ; RUN_PARTS_ARG="--verbose" ;;
+ u ) USER_MENU=1 ;;
+ h ) usage ;;
+ esac
+done
+fi
+
+export VERBOSE
+export USER_MENU
+
+if [ -d /etc/menu.d ]; then
+ run-parts $RUN_PARTS_ARG /etc/menu.d
+ echo
+fi
+