yunorock-dev/install-and-chroot.sh

24 lines
873 B
Bash
Raw Normal View History

2017-10-24 21:03:49 +00:00
#!/usr/bin/env sh
alpine_install=${INSTALL:-'alpine-chroot-install'}
alpine_directory=${DIR:-'/alpine'}
2017-10-24 21:03:49 +00:00
# DL alpine install script
if ! test -f "$alpine_install"; then
wget https://raw.githubusercontent.com/alpinelinux/alpine-chroot-install/v0.9.0/alpine-chroot-install -O "$alpine_install" \
&& echo 'e5dfbbdc0c4b3363b99334510976c86bfa6cb251 alpine-chroot-install' | sha1sum -c \
2017-10-24 21:03:49 +00:00
|| exit 1
chmod +x "$alpine_install"
fi
# Install Alpine
2017-10-26 19:46:34 +00:00
if ! test -d "$alpine_directory"; then
sudo sh ./$alpine_install -d $alpine_directory -p build-base -p git -p zsh -p lua-filesystem -p luarocks5.1 -p lua-toml -p moonscript -p abuild -p lua-argparse || exit 1
2017-10-24 21:03:49 +00:00
fi
# Set rc_sys="prefix" to not disturb systemd on current system
sudo sed -e 's/#rc_sys=""/rc_sys="prefix"/g' -i "$alpine_directory/etc/rc.conf"
# Launch chroot
sh $alpine_directory/enter-chroot ./build