diff --git a/downr1n.sh b/downr1n.sh index edece97..a958384 100755 --- a/downr1n.sh +++ b/downr1n.sh @@ -903,11 +903,11 @@ if [ true ]; then "$dir"/iproxy 2222 22 >/dev/null & fi - if ! ("$dir"/sshpass -p 'alpine' ssh -o StrictHostKeyChecking=no -p2222 root@localhost "echo connected" &> /dev/null); then + if ! ("$dir"/sshpass -p 'alpine' ssh -ostricthostkeychecking=false -ouserknownhostsfile=/dev/null -o StrictHostKeyChecking=no -q -p2222 root@localhost "echo connected" &> /dev/null); then echo "[*] Waiting for the ramdisk to finish booting" fi - while ! ("$dir"/sshpass -p 'alpine' ssh -o StrictHostKeyChecking=no -p2222 root@localhost "echo connected" &> /dev/null); do + while ! ("$dir"/sshpass -p 'alpine' ssh -ostricthostkeychecking=false -ouserknownhostsfile=/dev/null -o StrictHostKeyChecking=no -q -p2222 root@localhost "echo connected" &> /dev/null); do sleep 1 done diff --git a/other/post.sh b/other/post.sh deleted file mode 100755 index a8619a3..0000000 --- a/other/post.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/jbin/binpack/bin/bash -binpack=/jbin/binpack - -# uicache loader app -$binpack/bin/rm -rf /var/.palera1n/loader.app -$binpack/usr/bin/uicache -p /Applications/Pogo.app/ -$binpack/usr/bin/uicache -p /Applications/trollstore.app/ - -# remount r/w -/sbin/mount -uw / -/sbin/mount -uw /private/preboot/ - -# lauching daemon automatically -/usr/bin/launchctl load /Library/LaunchDaemons/ - -# update repo -if [ -f /usr/bin/apt ]; then - apt-get update -fi - -# activating tweaks -/etc/rc.d/substitute-launcher - -# respring -$binpack/usr/bin/uicache -a -$binpack/usr/bin/killall -9 SpringBoard - -echo "[post.sh] done" -exit diff --git a/other/rootfs/jbin/binpack/binpack.tar b/other/rootfs/jbin/binpack/binpack.tar index 80105b0..8d848c5 100644 Binary files a/other/rootfs/jbin/binpack/binpack.tar and b/other/rootfs/jbin/binpack/binpack.tar differ diff --git a/other/rootfs/jbin/jb.dylib b/other/rootfs/jbin/jb.dylib index f000359..2ef5f30 100755 Binary files a/other/rootfs/jbin/jb.dylib and b/other/rootfs/jbin/jb.dylib differ diff --git a/other/rootfs/jbin/jbloader b/other/rootfs/jbin/jbloader index 7cdc942..0d3cfbd 100755 Binary files a/other/rootfs/jbin/jbloader and b/other/rootfs/jbin/jbloader differ diff --git a/other/rootfs/jbin/post.sh b/other/rootfs/jbin/post.sh deleted file mode 100755 index 1a60803..0000000 --- a/other/rootfs/jbin/post.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/jbin/binpack/bin/bash -binpack=/jbin/binpack - -# uicache loader app -$binpack/bin/rm -rf /var/.palera1n/loader.app -$binpack/usr/bin/uicache -p /Applications/Pogo.app/ - -# remount r/w -/sbin/mount -uw / -/sbin/mount -uw /private/preboot/ - -# lauching daemon automatically -/usr/bin/launchctl load /Library/LaunchDaemons/ - -# update repo -if [ -f /usr/bin/apt ]; then - apt-get update -fi - -# activating tweaks -/etc/rc.d/substitute-launcher - -# respring -$binpack/usr/bin/uicache -a -$binpack/usr/bin/killall -9 SpringBoard - -echo "[post.sh] done" -exit