X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=wrt-setup;h=3c572f29b3ef49f95a92ea277e2a01d746ea26b8;hb=4acdd54dd395d63eef73778547fa8cc119ac6fca;hp=96a25647ae7eaee8c64b611db7bcf9c1bdcbf684;hpb=37464725aeecf468265275c0be0963858511398b;p=automated-distro-installer diff --git a/wrt-setup b/wrt-setup index 96a2564..3c572f2 100755 --- a/wrt-setup +++ b/wrt-setup @@ -31,6 +31,15 @@ Default HOST is root@10.0.0.1 Note, use -m "''" to send an empty mac arg. When we get a new enough bash, we can use ${@@Q} to properly pass an empty var. + +Note, if we dont have internet yet, then just download the bash package, +scp it over manually and install it, eg: + +cat /etc/opkg/distfeeds.conf +wget https://librecmc.org/librecmc/downloads/snapshots/v1.5.1-core/packages/mips_24kc/packages/bash_5.0-3_mips_24kc.ipk +scp bash_5.0-3_mips_24kc.ipk wrt: +ssh wrt +opkg install /root/bash_5.0-3_mips_24kc.ipk EOF wrt-setup-local -h exit $1 @@ -49,10 +58,18 @@ echo "$0: host=$h" cat ~/.ssh/home.pub | ssh $h dd of=/etc/dropbear/authorized_keys 2>/dev/null scp /a/work/libremanage/libremanage /a/bin/fai/wrt-setup-local /a/bin/cedit/cedit $h:/usr/bin # relay is built for openwrt 18.06.2, r7676-cddd7b4c77 -sudo scp /q/root/shadow/router \ - /a/opt/openwrt/source/bin/packages/mips_24kc/mypackages/relay_1.0-1_mips_24kc.ipk $h: -ssh $h </etc/opkg/customfeeds.conf <<'EOF' +src/gz openwrt_packages http://downloads.openwrt.org/releases/19.07.2/packages/mips_24kc/packages +EOF + if ! opkg list-installed|grep bash; then opkg update opkg install bash @@ -60,4 +77,4 @@ fi export HOME_DOMAIN=$HOME_DOMAIN export WIRELESSMAC=$WIRELESSMAC wrt-setup-local $@ -EOF +EOFOUTER