diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-04-05 14:23:22 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-04-05 14:23:22 +0300 |
commit | 0fd522a6e324de08a99bdd42ead193acff6f3d15 (patch) | |
tree | 7f25b03bb1ed8aaaf73689a59fee42196381ea2d /bin | |
parent | 946d002543083d9561bb1e7f851b8179099ad077 (diff) | |
download | arching-kaos-tools-0fd522a6e324de08a99bdd42ead193acff6f3d15.tar.gz arching-kaos-tools-0fd522a6e324de08a99bdd42ead193acff6f3d15.tar.bz2 arching-kaos-tools-0fd522a6e324de08a99bdd42ead193acff6f3d15.zip |
various fixes, surely still broken in places
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ak | 2 | ||||
-rwxr-xr-x | bin/ak-config | 5 | ||||
-rwxr-xr-x | bin/ak-profile | 31 | ||||
-rwxr-xr-x | bin/ak-repositories | 2 | ||||
-rwxr-xr-x | bin/ak-zblock | 50 |
5 files changed, 73 insertions, 17 deletions
@@ -7,6 +7,7 @@ fullprogrampath="$(realpath $0)" PROGRAM="$(basename $0)" descriptionString="Arching Kaos CLI" + source $AK_LIBDIR/_ak_log source $AK_LIBDIR/_ak_script @@ -36,6 +37,7 @@ then _ak_title_description _ak_help exit 1 + ;; esac fi diff --git a/bin/ak-config b/bin/ak-config index cc2c8c5..7d604ed 100755 --- a/bin/ak-config +++ b/bin/ak-config @@ -15,12 +15,13 @@ PROGRAM="$(basename $0)" descriptionString="Arching Kaos Configuration Tool" source $AK_LIBDIR/_ak_script +source $AK_LIBDIR/_ak_gpg source $AK_LIBDIR/_ak_ipfs _ak_config_show(){ # We will be using our public key also to put it in the block later KEY="tmp-gpg.pub" - gpg2 --homedir $AK_GPGHOME --armour --output $KEY --export $AK_FINGERPRINT + _ak_gpg_key_self_export $KEY GPG_PUB_KEY=$(_ak_ipfs_add $KEY) rm $KEY @@ -52,7 +53,7 @@ _ak_config_publish(){ } _ak_config_published(){ - _ak_ipfs_cat $(ak-node-info ipfs) | jq -c + _ak_ipfs_cat $(ak-node-info --ipfs) | jq -c } if [ ! -z $1 ]; then diff --git a/bin/ak-profile b/bin/ak-profile index 74491ef..d513c9a 100755 --- a/bin/ak-profile +++ b/bin/ak-profile @@ -5,22 +5,25 @@ ## ## Usage: ## -## -h, --help Prints this help message +## -h, --help Prints this help message ## -## index Show current status +## -i, --index Show current status ## -## show <data> Show profile entry from specified DATA IPFS CIDv0 +## --show <data IPFS CIDv0> Show profile entry from specified DATA +## IPFS CIDv0 ## -## set <property> <value> Sets a profile value +## -s, --set <property> <value> Sets a profile value ## -## get <property> Gets a profile value from the on-disk file. +## -g, --get <property> Gets a profile value from the on-disk +## file. ## ## Advanced (use with caution may produce duplicate entries): ## -## add <file> Creates a data file from the profile file you point -## to (file should already be in ZPROFILEDIR. +## -a, --add <file> Creates a data file from the profile file +## you point (file should already be in +## ZPROFILEDIR). ## -## import <folder> Import a folder to zchain #TODO +## -i, --import <folder> Import a folder to zchain #TODO ## fullprogrampath="$(realpath $0)" PROGRAM=$(basename $0) @@ -211,12 +214,12 @@ EOF if [ ! -z $1 ]; then case $1 in -h | --help) _ak_usage; exit;; - index) _ak_modules_profile_index; exit;; - show) _ak_modules_profile_show $2; exit;; - import) _ak_modules_profile_import $2; exit;; - add) _ak_modules_profile_add $2; exit;; - set) _ak_modules_profile_propset $2 "$3"; exit;; - get) _ak_modules_profile_propget $2; exit;; + -i | --index) _ak_modules_profile_index; exit;; + --show) _ak_modules_profile_show $2; exit;; + -i | --import) _ak_modules_profile_import $2; exit;; + -a | --add) _ak_modules_profile_add $2; exit;; + -s | --set) _ak_modules_profile_propset $2 "$3"; exit;; + -g | --get) _ak_modules_profile_propget $2; exit;; * ) _ak_usage;; esac else _ak_usage diff --git a/bin/ak-repositories b/bin/ak-repositories index 5086eb2..ffda701 100755 --- a/bin/ak-repositories +++ b/bin/ak-repositories @@ -107,7 +107,7 @@ add(){ then _ak_ipfs_name_publish --key="$PROJECT.git" /ipfs/$IPFS printf '{"project":"%s.git","ipns":"%s"}' $PROJECT $try > data - _ak_zblock_pack "repos/add" $PWD/data + _ak_zblock_pack "repos/add" $PWD/data echo "Done" fi fi diff --git a/bin/ak-zblock b/bin/ak-zblock new file mode 100755 index 0000000..d657ba5 --- /dev/null +++ b/bin/ak-zblock @@ -0,0 +1,50 @@ +#!/bin/bash +## +## Brief description +## +## Usage: +## +## -h, --help Prints this help message +## +fullprogrampath="$(realpath $0)" +PROGRAM=$(basename $0) +descriptionString="Quick description" + +# At least these +source $AK_LIBDIR/_ak_log +source $AK_LIBDIR/_ak_script +source $AK_LIBDIR/_ak_zblock + +# Your stuff here... +example(){ + echo "Example" +} + +# Flags to run +if [ ! -z $1 ]; then + case $1 in + -h | --help) _ak_usage; exit;; + -s | --show) + _ak_zblock_show $2 + exit + ;; + -x | --gen-html) + _ak_zblock_gen_html $2 + exit + ;; + -c | --cache) + _ak_zblock_gen_html $2 + exit + ;; + -p | --pack) + _ak_zblock_pack $2 + exit + ;; + -a | --announce) + _ak_zblock_announce $2 + exit + ;; + * ) _ak_usage;; + esac +else _ak_usage +fi |