We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abdf734 commit f7b3ee2Copy full SHA for f7b3ee2
1 file changed
upgrade.sh
@@ -320,13 +320,13 @@ if [[ ${ACTION} == "upgrade" ]]; then
320
exit 0
321
fi
322
323
- X="$( systemctl is-active allsky )"
+ ACTIVE="$( systemctl is-active allsky )"
324
if [[ $? -eq 0 ]]; then
325
RESTART_ALLSKY="true"
326
- display_msg --log progress "Allsky is ${X}; stopping it."
+ display_msg --log progress "Allsky is ${ACTIVE}; stopping it."
327
stop_Allsky
328
else
329
- display_msg --log progress "Allsky is ${X}; no need to stop it."
+ display_msg --log progress "Allsky is ${ACTIVE}; no need to stop it."
330
RESTART_ALLSKY="false"
331
332
0 commit comments