Commit initial files from server to repo

This commit is contained in:
Christoph Lampe
2023-01-18 14:50:15 +01:00
parent ac41be8292
commit e276d57f06
4 changed files with 73 additions and 0 deletions

11
script-dir_structure.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
# set -x
DIR=./data
if [ -d "$DIR" ];
then
echo "WARNING: $DIR directory already exists. For a new empty structure delete or move it! Aborting..."
else
mkdir -p data/{pgsql,gitea}
fi