diff options
author | Christos.K <freedomrfox@gmail.com> | 2017-08-22 19:43:15 +0300 |
---|---|---|
committer | Christos.K <freedomrfox@gmail.com> | 2017-08-22 19:43:15 +0300 |
commit | 9117a79847d67b32ff5114a235d98c3259c5ef50 (patch) | |
tree | cc808903ad7bf7d92077956383423cc4b14b4362 | |
parent | Included SYSFS/BACKUPFS check condition (diff) | |
download | GSE-9117a79847d67b32ff5114a235d98c3259c5ef50.tar.gz GSE-9117a79847d67b32ff5114a235d98c3259c5ef50.tar.bz2 GSE-9117a79847d67b32ff5114a235d98c3259c5ef50.zip |
Minor fix
-rw-r--r-- | config.d/controller/modules/functions/ct_fetch.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config.d/controller/modules/functions/ct_fetch.sh b/config.d/controller/modules/functions/ct_fetch.sh index e8e220b..a38ad06 100644 --- a/config.d/controller/modules/functions/ct_fetch.sh +++ b/config.d/controller/modules/functions/ct_fetch.sh @@ -49,8 +49,8 @@ _fetch_confd() { _check_version() { if [[ "${_ctversion}" == 0 ]]; then _local_version="$(cat "/mnt/workdir/var/lib/gse/version")" + _server_version="$(cat "${CTCONFDIR}/version")" if [[ -e "/mnt/workdir/var/lib/gse/version" ]]; then - _server_version="$(cat "${CTCONFDIR}/version")" if [[ "${_local_version}" != "${_server_version}" ]]; then if [[ -n "${_ctflag_human}" ]]; then if _question "A new System Version is present on the server" "Do you wish to fetch the new system?"; then @@ -68,7 +68,7 @@ _check_version() { fi else echo "System is corrupted" - _call_backup_switch + _ctflag_sysfetch=0 fi export _ctflag_sysfetch fi @@ -165,9 +165,9 @@ _extract_sys() { cd "$1" echo "Extracting tarbal..." if tar xvjpf "$2" --xattrs --numeric-owner >/dev/null; then - echo "PASS" > verify.info + echo "PASS" > "/tmp/verify.info" else - echo "FAILED" > verify.info + echo "FAILED" > "/tmp/verify.info" fi ) } |