diff --git a/etc/archboot/defaults b/etc/archboot/defaults index e3fc7a708..c1fa26673 100644 --- a/etc/archboot/defaults +++ b/etc/archboot/defaults @@ -39,7 +39,7 @@ _CUSTOM_PACMAN_CONF="/etc/archboot/pacman.conf.archboot" _CUSTOM_MIRRORLIST="/etc/archboot/mirrorlist.archboot" # local paths _ISO_HOME="/home/tobias/Arch/iso" -_ISO_HOME_CHROOTS="${_ISO_HOME}/chroots" +_ISO_HOME_CONTAINERS="${_ISO_HOME}/containers" _ISO_HOME_ARCH="${_ISO_HOME}/${_ARCH}" _ISO_HOME_SOURCE="${_ISO_HOME}/${_ARCH}/sources" # external paths diff --git a/usr/bin/archboot-server-update.sh b/usr/bin/archboot-server-update.sh index e38c34696..07d3a0786 100755 --- a/usr/bin/archboot-server-update.sh +++ b/usr/bin/archboot-server-update.sh @@ -15,8 +15,8 @@ _usage () { } [[ -z "${1}" || "${1}" != "run" ]] && _usage _root_check -[[ -d "${_ISO_HOME_CHROOTS}" ]] || mkdir -p "${_ISO_HOME_CHROOTS}" -cd "${_ISO_HOME_CHROOTS}" || exit 1 +[[ -d "${_ISO_HOME_CONTAINERS}" ]] || mkdir -p "${_ISO_HOME_CONTAINERS}" +cd "${_ISO_HOME_CONTAINERS}" || exit 1 # stop if MASK is set [[ -e MASK ]] && exit 0 _FIRST_RUN=1