Skip to content
Snippets Groups Projects

Reorganisation

8 files
+ 17
12
Compare changes
  • Side-by-side
  • Inline

Files

+ 5
3
#!/bin/bash
echo "============= $(basename "$0") ================="
echo "RUN $(basename "$0") ==="
if [ ! -e $(pwd)/$(dirname "$0")/../main.env ]
if [ ! -e $(dirname "$0")/../main.env ]
then
echo "Please copy in racine of NoCloud Auto Installer main.env.sample to main.env and edit it"
exit 1
else
echo "Environment file loaded"
fi
. $(pwd)/$(dirname "$0")/../main.env
. $(dirname "$0")/../main.env
version=7.0
dol_path="/usr/share/dolibarr"
Loading