Working version of cloner, basic setup of git and so on

This commit is contained in:
2018-02-08 15:09:47 +01:00
parent 0712ca5d16
commit aa601dc1fa
7 changed files with 109 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
# configure
export BASE=/data
export CCLONE_PATH=$BASE/repos
export CCLONE_CACHE=$BASE/cache
export CONFIG_DIR=$BASE/config
function die(){
echo "$@" 1>&2
exit 1
}