escaped every parameter in all scripts

This commit is contained in:
Mustapha Zorgati
2021-02-23 13:47:27 +01:00
parent 1b437bcbb3
commit c0897eebb7
7 changed files with 40 additions and 40 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
. /app/includes.sh
@@ -37,7 +37,7 @@ fi
function configure_timezone() {
if [[ ! -f /etc/localtime || ! -f /etc/timezone ]]; then
cp -f /usr/share/zoneinfo/${TIMEZONE} /etc/localtime
cp -f "/usr/share/zoneinfo/${TIMEZONE}" /etc/localtime
echo "${TIMEZONE}" > /etc/timezone
fi
}