aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-12-07 04:22:05 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-12-07 04:22:05 +0200
commitd002df626740a2ccc6d897a8c10cf65672ae0b74 (patch)
treeddabc13bd7cfdd516dd17389529adbe25b022308 /lib
parent1305976d458a92d7aa3b5ff456a9b1e7b49c8468 (diff)
downloadarching-kaos-tools-d002df626740a2ccc6d897a8c10cf65672ae0b74.tar.gz
arching-kaos-tools-d002df626740a2ccc6d897a8c10cf65672ae0b74.tar.bz2
arching-kaos-tools-d002df626740a2ccc6d897a8c10cf65672ae0b74.zip
Removed wget from dependencies
Diffstat (limited to 'lib')
-rwxr-xr-xlib/_ak_fs2
-rwxr-xr-xlib/_ak_ipfs4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/_ak_fs b/lib/_ak_fs
index f55e58e..d8a7600 100755
--- a/lib/_ak_fs
+++ b/lib/_ak_fs
@@ -285,7 +285,7 @@ _ak_fs_find_depth(){
else
exit 111
# Try to download stuff
- # wget -s $remoteMrk/$currentNode -O $AK_LEAFSDIR/$currentNode
+ # curl -s $remoteMrk/$currentNode -o $AK_LEAFSDIR/$currentNode
# if [ $? -ne 0 ]
# then
# exit 111
diff --git a/lib/_ak_ipfs b/lib/_ak_ipfs
index 94f5913..c5e0b6a 100755
--- a/lib/_ak_ipfs
+++ b/lib/_ak_ipfs
@@ -453,7 +453,7 @@ _ak_ipfs_download(){
_ak_log_info "Downloading ipfs $IPFS_VERSION"
if [ ! -f $AK_ARCHIVESDIR/$IPFS_TARGET_FILE ]
then
- wget -O $AK_ARCHIVESDIR/$IPFS_TARGET_FILE https://dist.ipfs.tech/kubo/$IPFS_VERSION/$IPFS_TARGET_FILE ;
+ curl -s -o $AK_ARCHIVESDIR/$IPFS_TARGET_FILE https://dist.ipfs.tech/kubo/$IPFS_VERSION/$IPFS_TARGET_FILE
else
_ak_log_info "Already have the latest version"
exit 0
@@ -485,7 +485,7 @@ _ak_ipfs_swarm_install(){
if [ ! -f $AK_IPFS_REPO/swarm.key ]
then
_ak_log_info "Downloading swarm key"
- wget -O $AK_IPFS_REPO/swarm.key https://arching-kaos.net/files/swarm.key
+ curl -s -o $AK_IPFS_REPO/swarm.key https://arching-kaos.net/files/swarm.key
elif [ -f $AK_IPFS_REPO/swarm.key ] && [ "$(sha512sum $AK_IPFS_REPO/swarm.key | awk '{ print $1 }')" == "$SWARMSHA512SUM" ]
then
_ak_log_info "Congrats! You are already in our swarm"