krebs/4lib/infest/prepare.sh: recognize NixOS ISO
This commit is contained in:
parent
67b77ae4d7
commit
eb0797b7ed
@ -36,6 +36,13 @@ prepare() {(
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
nixos)
|
||||||
|
case $(cat /proc/cmdline) in
|
||||||
|
*' root=LABEL=NIXOS_ISO '*)
|
||||||
|
prepare_nixos_iso "$@"
|
||||||
|
exit
|
||||||
|
esac
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
elif test -e /etc/centos-release; then
|
elif test -e /etc/centos-release; then
|
||||||
case $(cat /etc/centos-release) in
|
case $(cat /etc/centos-release) in
|
||||||
@ -73,6 +80,24 @@ prepare_debian() {
|
|||||||
prepare_common
|
prepare_common
|
||||||
}
|
}
|
||||||
|
|
||||||
|
prepare_nixos_iso() {
|
||||||
|
mountpoint /mnt
|
||||||
|
|
||||||
|
type git 2>/dev/null || nix-env -iA nixos.git
|
||||||
|
|
||||||
|
mkdir -p /mnt/"$target_path"
|
||||||
|
mkdir -p "$target_path"
|
||||||
|
|
||||||
|
if ! mountpoint "$target_path"; then
|
||||||
|
mount --rbind /mnt/"$target_path" "$target_path"
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p bin
|
||||||
|
rm -f bin/nixos-install
|
||||||
|
cp "$(type -p nixos-install)" bin/nixos-install
|
||||||
|
sed -i "s@^NIX_PATH=\"[^\"]*\"@NIX_PATH=$target_path@" bin/nixos-install
|
||||||
|
}
|
||||||
|
|
||||||
prepare_common() {(
|
prepare_common() {(
|
||||||
|
|
||||||
if ! getent group nixbld >/dev/null; then
|
if ! getent group nixbld >/dev/null; then
|
||||||
|
Loading…
Reference in New Issue
Block a user