diff --git a/sspatch/install.sh b/sspatch/install.sh index 4e6d1d8..c51ed5a 100755 --- a/sspatch/install.sh +++ b/sspatch/install.sh @@ -31,21 +31,21 @@ if [ "${1}" = "late" ]; then ENTRIES=("0.0.0.0 synosurveillance.synology.com") for ENTRY in "${ENTRIES[@]}" do - if [ -f /tmpRoot/etc/hosts ]; then + if [ -f "/tmpRoot/etc/hosts" ]; then # Check if the entry is already in the file if grep -Fxq "${ENTRY}" /tmpRoot/etc/hosts; then - echo "Entry ${ENTRY} already exists" + echo "Entry ${ENTRY} already exists" else - echo "Entry ${ENTRY} does not exist, adding now" - echo "${ENTRY}" >> /tmpRoot/etc/hosts + echo "Entry ${ENTRY} does not exist, adding now" + echo "${ENTRY}" >> /tmpRoot/etc/hosts fi fi - if [ -f /tmpRoot/etc.defaults/hosts ]; then + if [ -f "/tmpRoot/etc.defaults/hosts" ]; then if grep -Fxq "${ENTRY}" /tmpRoot/etc.defaults/hosts; then - echo "Entry ${ENTRY} already exists" + echo "Entry ${ENTRY} already exists" else - echo "Entry ${ENTRY} does not exist, adding now" - echo "${ENTRY}" >> /tmpRoot/etc.defaults/hosts + echo "Entry ${ENTRY} does not exist, adding now" + echo "${ENTRY}" >> /tmpRoot/etc.defaults/hosts fi fi done