Only create VERSION_FILE if it does not exist

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König 2022-10-06 14:37:56 +02:00
parent 888e44e53d
commit d7f7ef9965
No known key found for this signature in database

View file

@ -49,8 +49,10 @@ rm -f "/etc/pihole/localversions"
# Create new versions file if it does not exist
VERSION_FILE="/etc/pihole/versions"
touch "${VERSION_FILE}"
chmod 644 "${VERSION_FILE}"
if [ ! -f ${VERSION_FILE} ]; then
touch "${VERSION_FILE}"
chmod 644 "${VERSION_FILE}"
fi
# if /pihole.docker.tag file exists, we will use it's value later in this script
DOCKER_TAG=$(cat /pihole.docker.tag 2>/dev/null)