Fixed script

This commit is contained in:
EpicKiwi 2023-11-08 19:07:28 +01:00
parent b7d883bd9a
commit 031db95c54
Signed by: epickiwi
GPG Key ID: C4B28FD2729941CE
1 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,5 @@
#!/bin/bash
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
if [ "$#" = "0" ]; then
echo "Usage set-status.sh [new-status]"
echo ""
@ -11,9 +9,9 @@ if [ "$#" = "0" ]; then
fi
if [ "$1" = "opened" ]; then
ln -sf "index.ouvert.html" "$SCRIPTPATH/index.html"
ln -sf "index.ouvert.html" "/var/www/html/index.html"
fi
if [ "$1" = "closed" ]; then
ln -sf "index.fermé.html" "$SCRIPTPATH/index.html"
ln -sf "index.fermé.html" "/var/www/html/index.html"
fi