Compare commits

..

No commits in common. "10dcbf25e58a6617782d2970ab23153f2e935d71" and "5b53d9cc28eee4ae908988a5ae005108ff2d1543" have entirely different histories.

View file

@ -20,7 +20,7 @@ if ! test "$HAIN_ENV" && ! type bwrap >/dev/null 2>&1 ; then
exit 1
fi
if test "$(sysctl -n kernel.unprivileged_userns_clone)" -ne 1 ; then
if test $(sysctl -n kernel.unprivileged_userns_clone) -ne 1 ; then
echo "Necesitamos configurar tu sistema, ingresa tu contraseña para correr el comando" >&2
echo "sudo sysctl -a kernel.unprivileged_userns_clone=1" >&2
sudo sysctl -a kernel.unprivileged_userns_clone=1
@ -148,7 +148,7 @@ crear_entorno() {
# Instalar las dependencias solo si cambiaron
if test "$ENTORNO/etc/apk/world" -ot "$DIR/packages"; then
echo "Instalando paquetes..." >&2
packages="$(tr "\n" " " < "$DIR/packages")"
packages="$(cat "$DIR/packages" | tr "\n" " ")"
correr "apk add --no-cache $packages"
fi
@ -200,7 +200,7 @@ case $1 in
;;
esac
if test "$HAIN_ENV"; then
if test $HAIN_ENV; then
${*:-$DEFAULT}
else
crear_entorno