This commit is contained in:
Cyberes 2024-03-29 10:29:10 -06:00
parent c472cf02b7
commit 5e1490b760
1 changed files with 1 additions and 2 deletions

View File

@ -12,7 +12,7 @@ IS_TIMER=false
IS_ALLOWED_DISABLED=false
# Parse command line arguments
while getopts "u:t:d" opt; do
while getopts "u:td" opt; do
case ${opt} in
u )
UNIT_NAME=$OPTARG
@ -35,7 +35,6 @@ while getopts "u:t:d" opt; do
done
shift $((OPTIND -1))
# Check if UNIT name is provided
if [ -z "$UNIT_NAME" ]; then
echo "Missing unit name."
usage