2013-04-25 17:54:54 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2013-09-20 23:13:30 -03:00
|
|
|
set -e
|
|
|
|
|
2013-09-19 12:02:14 -03:00
|
|
|
rootfs=$1
|
2013-04-25 17:54:54 +02:00
|
|
|
|
|
|
|
echo "installing babushka"
|
|
|
|
cat > $rootfs/tmp/install-babushka.sh << EOF
|
|
|
|
#!/bin/sh
|
2013-09-19 12:02:14 -03:00
|
|
|
curl https://babushka.me/up | sudo bash
|
2013-04-25 17:54:54 +02:00
|
|
|
|
|
|
|
EOF
|
|
|
|
chmod +x $rootfs/tmp/install-babushka.sh
|
|
|
|
chroot $rootfs /tmp/install-babushka.sh
|
|
|
|
|
|
|
|
rm -rf $rootfs/tmp/*
|