Only create inadyn config file if it doesn't exist

This commit is contained in:
Bob Mottram 2018-05-12 18:03:35 +01:00
parent f3e0653908
commit 06b428e855
1 changed files with 5 additions and 3 deletions

View File

@ -535,9 +535,11 @@ function install_dynamicdns {
fi
# create a configuration file
{ echo 'period = 300';
echo 'user-agent = Mozilla/5.0';
echo ''; } > "${INADYN_CONFIG_FILE}"
if [ ! -f "${INADYN_CONFIG_FILE}" ]; then
{ echo 'period = 300';
echo 'user-agent = Mozilla/5.0';
echo ''; } > "${INADYN_CONFIG_FILE}"
fi
chmod 600 "${INADYN_CONFIG_FILE}"
{ echo '[Unit]';