aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-zchain-reset
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-03-27 09:34:01 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-03-27 09:34:01 +0200
commit465d5db06e56dc21072a8ff01258f6815d340b00 (patch)
treeae16ecf2f980b054caa2f97f48e8fa5f22b768a6 /bin/ak-zchain-reset
parent1cb6c8bef840a96baa37392e9833a7674f805a83 (diff)
downloadarching-kaos-tools-465d5db06e56dc21072a8ff01258f6815d340b00.tar.gz
arching-kaos-tools-465d5db06e56dc21072a8ff01258f6815d340b00.tar.bz2
arching-kaos-tools-465d5db06e56dc21072a8ff01258f6815d340b00.zip
new lib _ak_ipfs
Diffstat (limited to 'bin/ak-zchain-reset')
-rwxr-xr-xbin/ak-zchain-reset12
1 files changed, 7 insertions, 5 deletions
diff --git a/bin/ak-zchain-reset b/bin/ak-zchain-reset
index f19e1b0..b415c44 100755
--- a/bin/ak-zchain-reset
+++ b/bin/ak-zchain-reset
@@ -1,5 +1,7 @@
#!/bin/bash
PROGRAM=$(basename $0)
+source $AK_LIBDIR/_ak_ipfs
+
usage(){
echo "$PROGRAM - Zchain reset"
echo ""
@@ -19,24 +21,24 @@ reset (){
if [ $? != 0 ]; then exit 1; fi
echo "Make sure /zarchive folder exists within IPFS FS"
- ak-ipfs-files-mkdir /zarchive
+ _ak_ipfs_files_mkdir /zarchive
if [ $? != 0 ]; then echo "Folder already there"; fi
echo "Archive the previous ZLATEST"
- ak-ipfs-files-cp /zlatest /zarchive/$(date -u +%s)-$(ak-ipfs-files-stat /zlatest | head -n 1)
+ _ak_ipfs_files_cp /zlatest /zarchive/$(date -u +%s)-$(_ak_ipfs_files_stat /zlatest | head -n 1)
if [ $? != 0 ]; then exit 1; fi
echo "Removing previous /zlatest entry"
- ak-ipfs-files-rm /zlatest
+ _ak_ipfs_files_rm /zlatest
if [ $? != 0 ]; then exit 1; fi
echo "Copying reset ZLATEST"
CZLATEST="$(cat $ZLATEST)"
- ak-ipfs-files-cp /ipfs/$CZLATEST /zlatest
+ _ak_ipfs_files_cp /ipfs/$CZLATEST /zlatest
if [ $? != 0 ]; then exit 1; fi
echo "Publishing new (reset) ZLATEST"
- ak-ipfs-name-publish --key=zchain /ipfs/$(cat $ZLATEST)
+ _ak_ipfs_name_publish --key=zchain /ipfs/$(cat $ZLATEST)
if [ $? != 0 ]; then exit 1; fi
ak-config publish