vagrant-lxc-ng/boxes/common/install-babushka

16 lines
299 B
Text
Raw Normal View History

#!/bin/bash
cache=`readlink -f .`
rootfs="${cache}/rootfs"
echo "installing babushka"
cat > $rootfs/tmp/install-babushka.sh << EOF
#!/bin/sh
2013-04-29 13:25:48 +00:00
curl -L https://babushka.me/up/hard | sudo bash
EOF
chmod +x $rootfs/tmp/install-babushka.sh
chroot $rootfs /tmp/install-babushka.sh
rm -rf $rootfs/tmp/*