2018-02-05 18:41:54 +00:00
|
|
|
#! @shell@
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Re-exec ourselves in a private mount namespace so that our bind
|
|
|
|
# mounts get cleaned up automatically.
|
2018-02-07 16:59:04 +00:00
|
|
|
if [ -z "$NIXOS_ENTER_REEXEC" ]; then
|
|
|
|
export NIXOS_ENTER_REEXEC=1
|
|
|
|
if [ "$(id -u)" != 0 ]; then
|
|
|
|
extraFlags="-r"
|
2018-02-05 18:41:54 +00:00
|
|
|
fi
|
2018-02-07 16:59:04 +00:00
|
|
|
exec unshare --fork --mount --uts --mount-proc --pid $extraFlags -- "$0" "$@"
|
|
|
|
else
|
|
|
|
mount --make-rprivate /
|
2018-02-05 18:41:54 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
mountPoint=/mnt
|
|
|
|
system=/nix/var/nix/profiles/system
|
2019-08-13 21:05:22 +00:00
|
|
|
command=("$system/sw/bin/bash" "--login")
|
|
|
|
silent=0
|
2018-02-05 18:41:54 +00:00
|
|
|
|
|
|
|
while [ "$#" -gt 0 ]; do
|
|
|
|
i="$1"; shift 1
|
|
|
|
case "$i" in
|
|
|
|
--root)
|
|
|
|
mountPoint="$1"; shift 1
|
|
|
|
;;
|
|
|
|
--system)
|
|
|
|
system="$1"; shift 1
|
|
|
|
;;
|
|
|
|
--help)
|
|
|
|
exec man nixos-enter
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
--command|-c)
|
2019-08-13 21:05:22 +00:00
|
|
|
command=("$system/sw/bin/bash" "-c" "$1")
|
2018-02-05 18:41:54 +00:00
|
|
|
shift 1
|
|
|
|
;;
|
2019-08-13 21:05:22 +00:00
|
|
|
--silent)
|
|
|
|
silent=1
|
|
|
|
;;
|
2018-02-05 18:41:54 +00:00
|
|
|
--)
|
|
|
|
command=("$@")
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "$0: unknown option \`$i'"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2018-02-07 16:23:05 +00:00
|
|
|
if [[ ! -e $mountPoint/etc/NIXOS ]]; then
|
|
|
|
echo "$0: '$mountPoint' is not a NixOS installation" >&2
|
|
|
|
exit 126
|
|
|
|
fi
|
|
|
|
|
2019-08-13 21:05:22 +00:00
|
|
|
mkdir -p "$mountPoint/dev" "$mountPoint/sys"
|
|
|
|
chmod 0755 "$mountPoint/dev" "$mountPoint/sys"
|
2018-02-05 18:41:54 +00:00
|
|
|
mount --rbind /dev "$mountPoint/dev"
|
2018-04-22 20:02:57 +00:00
|
|
|
mount --rbind /sys "$mountPoint/sys"
|
2018-02-05 18:41:54 +00:00
|
|
|
|
2019-08-13 21:05:22 +00:00
|
|
|
# If silent, write both stdout and stderr of activation script to /dev/null
|
|
|
|
# otherwise, write both streams to stderr of this process
|
|
|
|
if [ "$silent" -eq 0 ]; then
|
|
|
|
PIPE_TARGET="/dev/stderr"
|
|
|
|
else
|
|
|
|
PIPE_TARGET="/dev/null"
|
|
|
|
fi
|
|
|
|
|
2018-02-05 18:41:54 +00:00
|
|
|
# Run the activation script. Set $LOCALE_ARCHIVE to supress some Perl locale warnings.
|
2019-08-13 21:05:22 +00:00
|
|
|
LOCALE_ARCHIVE="$system/sw/lib/locale/locale-archive" chroot "$mountPoint" "$system/activate" >>$PIPE_TARGET 2>&1 || true
|
2018-02-05 18:41:54 +00:00
|
|
|
|
|
|
|
exec chroot "$mountPoint" "${command[@]}"
|