diff --git a/scripts/cp-musl.sh b/scripts/cp-musl.sh deleted file mode 100755 index 93f51675..00000000 --- a/scripts/cp-musl.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -CATDIR="/release/buildroot/alt-dev/builds/musl" -SERVER="amd64@dipper:~/musl" -LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*amd64*' -type l) -#COMMAND="rsync -e ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no -a --omit-dir-times --delay-updates " -COMMAND="rsync" -for f in $LIST; do - $COMMAND $(realpath $f) $SERVER - $COMMAND $(realpath $f).CONTENTS.gz $SERVER - $COMMAND $(realpath $f).DIGESTS $SERVER -done - -#SERVER="/release/weekly/builds/x86/musl" -SERVER="x86@dipper:~/musl" -LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*i686*' -type l) -for f in $LIST; do - $COMMAND $(realpath $f) $SERVER - $COMMAND $(realpath $f).CONTENTS.gz $SERVER - $COMMAND $(realpath $f).DIGESTS $SERVER -done diff --git a/scripts/update_musl_overlay b/scripts/update_musl_overlay deleted file mode 100755 index 4d62aef0..00000000 --- a/scripts/update_musl_overlay +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -MUSLDIR="/release/trees/musl-auto" -MUSLURI="https://anongit.gentoo.org/git/proj/musl.git" - -if [ ! -d "${MUSLDIR}" ] ; then - echo musl directory not present yet or not a directory, fixing - rm -rf "${MUSLDIR}" - git clone "${MUSLURI}" "${MUSLDIR}" -else - cd "${MUSLDIR}" - git pull -fi