diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-04-15 20:10:50 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-04-15 20:10:50 +0300 |
commit | 0ce8b434e264b0fca5bb900ba57701ee05216170 (patch) | |
tree | 6342a80f355d18933497808a92f84205ea5f7371 /install.sh | |
parent | 15d49c853c96ebef6c1826d0eeeeac54d0956d6f (diff) | |
download | arching-kaos-tools-0ce8b434e264b0fca5bb900ba57701ee05216170.tar.gz arching-kaos-tools-0ce8b434e264b0fca5bb900ba57701ee05216170.tar.bz2 arching-kaos-tools-0ce8b434e264b0fca5bb900ba57701ee05216170.zip |
still fixing installation
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -2,6 +2,19 @@ source ./config.sh printf "%s" $(pwd) > wam WHEREAMI="$(cat wam)" +if [[ ! -d $AK_WORKDIR ]] ; then mkdir $AK_WORKDIR ;fi +if [[ ! -d $AK_CONFIGDIR ]] ; then mkdir $AK_CONFIGDIR ;fi +if [[ ! -d $AK_BINDIR ]]; then mkdir $AK_BINDIR ;fi +if [[ ! -d $AK_ZBLOCKDIR ]]; then mkdir $AK_ZBLOCKDIR ;fi +if [[ ! -d $AK_BLOCKDIR ]]; then mkdir $AK_BLOCKDIR ;fi +if [[ ! -d $AK_DATADIR ]]; then mkdir $AK_DATADIR ;fi +if [[ ! -d $AK_ARCHIVESDIR ]]; then mkdir $AK_ARCHIVESDIR ;fi +if [[ ! -f $AK_LOGSFILE ]]; then touch $AK_LOGSFILE ;fi +if [[ ! -f $AK_GENESIS ]]; then touch $AK_GENESIS;fi +if [[ ! -f $AK_MINEDBLOCKS ]]; then mkdir $AK_MINEDBLOCKS; fi +if [[ ! -f $AK_ZBLOCKSFILE ]]; then mkdir $AK_ZBLOCKSFILE; fi +if [[ ! -f $AK_ZPAIRSFILE ]]; then mkdir $AK_ZPAIRSFILE; fi + touch $AK_WORKDIR/logs logthis(){ echo "Install script: $1" >> $AK_WORKDIR/logs |