Hotfix: strip spaces

This commit is contained in:
Bill Zimmerman 2020-03-20 12:48:44 +01:00 committed by GitHub
parent 8998433d75
commit 72eec3e2af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ function check_for_old_configs() {
for file in /etc/systemd/network/raspap-*.net*; do
if [ -f "${file}" ]; then
filename = $(basename $file)
filename=$(basename $file)
sudo cp "$file" "${raspap_dir}/backups/${filename}.`date +%F-%R`"
sudo ln -sf "${raspap_dir}/backups/${filename}.`date +%F-%R`" "${raspap_dir}/backups/${filename}"
fi