From 4aa29c28f54704c3fdba9ba432916ad340447c61 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Wed, 20 Nov 2024 11:15:45 +0200 Subject: Updates for AKFS - Changed old directories to comprehensible names - Introduced relevant settings to the API - install script now creates these directories - AK_LEAFSDIR, AK_MAPSDIR, AK_CHUNKSDIR --- install.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'install.sh') diff --git a/install.sh b/install.sh index 7a62c81..c7cb613 100755 --- a/install.sh +++ b/install.sh @@ -135,6 +135,9 @@ if [ ! -f $AK_ZBLOCKSFILE ]; then touch $AK_ZBLOCKSFILE; fi if [ ! -f $AK_ZPAIRSFILE ]; then touch $AK_ZPAIRSFILE; fi if [ ! -d $AK_CACHEDIR ]; then mkdir $AK_CACHEDIR; fi if [ ! -d $AK_GPGHOME ]; then mkdir $AK_GPGHOME && chmod 700 -R $AK_GPGHOME; fi +if [ ! -d $AK_CHUNKSDIR ]; then mkdir -p $AK_CHUNKSDIR; fi +if [ ! -d $AK_LEAFSDIR ]; then mkdir -p $AK_LEAFSDIR; fi +if [ ! -d $AK_MAPSDIR ]; then mkdir -p $AK_MAPSDIR; fi touch $AK_WORKDIR/logs logthis(){ -- cgit v1.2.3