We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 604997c commit 74c6814Copy full SHA for 74c6814
scripts/installUpgradeFunctions.sh
@@ -926,7 +926,12 @@ function check_tmp()
926
# in /etc/fstab with ${ALLSKY_TMP} in it, even if it's not currently mounted.
927
if grep --quiet "^${INITIAL_FSTAB_STRING}" /etc/fstab ; then
928
MSG="${ALLSKY_TMP} is currently a memory filesystem; no change needed."
929
- display_msg --logonly info "${MSG}"
+ if [[ ${CALLED_FROM} == "install" ]]; then
930
+ display_msg --logonly info "${MSG}"
931
+ else
932
+ o_ "\n${MSG}\n"
933
+ return 0
934
+ fi
935
936
# If there's a prior Allsky version and it's tmp directory is mounted,
937
# try to unmount it, but that often gives an error that it's busy,
0 commit comments