diff options
author | Christian Breunig <christian@breunig.cc> | 2023-08-28 21:53:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-28 21:53:35 +0200 |
commit | c2d9dea2524297404fb27028c1f41124dc47c24f (patch) | |
tree | 1dac4f316008d16c379a7d7f0c7e45d26a427901 /scripts/install/install-image-existing | |
parent | bac61854acd40b4eae8b12e47be54306171f5c3c (diff) | |
parent | 93af10d71295ceda7baa23892f487c419700dafa (diff) | |
download | vyatta-cfg-system-c2d9dea2524297404fb27028c1f41124dc47c24f.tar.gz vyatta-cfg-system-c2d9dea2524297404fb27028c1f41124dc47c24f.zip |
Merge pull request #204 from jestabro/T5520
T5520: avoid cp from /config during update, after coreutils change
Diffstat (limited to 'scripts/install/install-image-existing')
-rwxr-xr-x | scripts/install/install-image-existing | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/install/install-image-existing b/scripts/install/install-image-existing index feba6683..7cf0b4db 100755 --- a/scripts/install/install-image-existing +++ b/scripts/install/install-image-existing @@ -189,9 +189,9 @@ if [ $space_avail -gt $space_needed_configdata ]; then resp=$(get_response "Yes" "Yes No Y N") if [ "$resp" == 'yes' ] || [ "$resp" == 'y' ]; then echo 'Copying current configuration...' - ndir=${INST_ROOT}/${VYATTA_NEW_CFG_DIR} + ndir=${INST_ROOT}/${VYATTA_CFG_DIR} mkdir -p $ndir - find $VYATTA_NEW_CFG_DIR -maxdepth 1 -mindepth 1 \ + find $VYATTA_CFG_DIR -maxdepth 1 -mindepth 1 \ -exec cp '-a' '{}' "$ndir/" ';' # Set the upgraded flag @@ -201,7 +201,7 @@ if [ $space_avail -gt $space_needed_configdata ]; then chmod -R 775 $ndir # Return original permissions for private files in config/auth. T2713 - rsync -a ${VYATTA_NEW_CFG_DIR}/auth/ ${ndir}/auth/ + rsync -a ${VYATTA_CFG_DIR}/auth/ ${ndir}/auth/ fi done |