1.  Add MacOS start/stop functionality from menu.
2.  Cleanup & dead code removal
This commit is contained in:
ChuckPa
2024-06-14 13:20:37 -04:00
parent 4f5b5abdc8
commit 91562060d1
3 changed files with 16 additions and 7 deletions

View File

@@ -949,11 +949,11 @@ Enter command # -or- command name (4 char min) :
# This script grants the given syno username (your username)
# the ability to elevate to 'root' privilege for use with DBRepair.sh
#
# Set your desired Syno username here (no spaces)
MyUsername=chuck
# Set your desired Syno username here (no spaces in the username)
MyUsername="chuck"
# Confirm username exists
if [ "$(id $MyUsername)" = "" ]; then
if [ "$(id "$MyUsername")" = "" ]; then
echo ERROR: No such user \'$MyUsername\'
exit 1
fi