Install some pkgxx dependancies

master
Olivier DOSSMANN 2017-10-26 21:46:34 +02:00
parent 210d36e5f4
commit e9cdaddf8d
1 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env sh
alpine_install='alpine-chroot-install'
alpine_directory='alpine'
alpine_directory='/alpine'
# DL alpine install script
if ! test -f "$alpine_install"; then
@ -12,12 +12,12 @@ if ! test -f "$alpine_install"; then
fi
# Install Alpine
if ! test -d "./alpine"; then
sh ./$alpine_install
if ! test -d "$alpine_directory"; then
sudo sh ./$alpine_install -p "build-base git zsh lua-filesystem luarocks lua-toml" || exit 1
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
sh $alpine_directory/enter-chroot