2007-02-06 13:09:25 +00:00
|
|
|
#! @shell@ -e
|
|
|
|
|
|
|
|
|
|
|
|
# What are we supposed to do?
|
|
|
|
action="$1"
|
|
|
|
|
2007-02-06 13:12:10 +00:00
|
|
|
showSyntax() {
|
2007-02-06 13:09:25 +00:00
|
|
|
# !!! more or less cut&paste from
|
|
|
|
# system/switch-to-configuration.sh (which we call, of course).
|
|
|
|
cat <<EOF
|
|
|
|
Usage: $0 [switch|boot|test|build]
|
|
|
|
|
|
|
|
switch: make the configuration the boot default and activate now
|
|
|
|
boot: make the configuration the boot default
|
|
|
|
test: activate the configuration, but don't make it the boot default
|
|
|
|
build: build the configuration, but don't make it the default or
|
|
|
|
activate it
|
|
|
|
EOF
|
|
|
|
exit 1
|
2007-02-06 13:12:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if test -z "$action"; then showSyntax; fi
|
2007-02-06 13:09:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Allow the location of NixOS sources and the system configuration
|
|
|
|
# file to be overridden.
|
|
|
|
if test -z "$NIXOS"; then NIXOS=/etc/nixos/nixos; fi
|
|
|
|
if test -z "$NIXOS_CONFIG"; then NIXOS_CONFIG=/etc/nixos/configuration.nix; fi
|
|
|
|
|
|
|
|
|
2007-08-15 12:01:20 +00:00
|
|
|
# Pull the manifests defined in the configuration (the "manifests"
|
|
|
|
# attribute). Wonderfully hacky.
|
2007-08-16 15:09:06 +00:00
|
|
|
if test -z "$NIXOS_NO_PULL"; then
|
2007-09-18 15:06:24 +00:00
|
|
|
manifests=$(nix-instantiate --eval-only --xml --strict $NIXOS -A manifests \
|
2007-08-16 15:09:06 +00:00
|
|
|
| grep '<string' | sed 's^.*"\(.*\)".*^\1^g')
|
2007-12-04 12:31:00 +00:00
|
|
|
|
|
|
|
mkdir -p /nix/var/nix/channel-cache
|
2007-08-16 15:09:06 +00:00
|
|
|
for i in $manifests; do
|
|
|
|
NIX_DOWNLOAD_CACHE=/nix/var/nix/channel-cache nix-pull $i || true
|
|
|
|
done
|
|
|
|
fi
|
2007-08-15 12:01:20 +00:00
|
|
|
|
|
|
|
|
2007-09-18 15:38:05 +00:00
|
|
|
# First build Nix, since NixOS may require a newer version than the
|
|
|
|
# current one. Of course, the same goes for Nixpkgs, but Nixpkgs is
|
|
|
|
# more conservative.
|
|
|
|
nix-build $NIXOS -A nixFallback -o $HOME/nix-tmp
|
|
|
|
PATH=$HOME/nix-tmp/bin:$PATH
|
|
|
|
|
|
|
|
|
2007-02-06 13:09:25 +00:00
|
|
|
# Either upgrade the configuration in the system profile (for "switch"
|
|
|
|
# or "boot"), or just build it and create a symlink "result" in the
|
|
|
|
# current directory (for "build" and "test").
|
|
|
|
if test "$action" = "switch" -o "$action" = "boot"; then
|
2007-09-18 15:06:24 +00:00
|
|
|
nix-env -p /nix/var/nix/profiles/system -f $NIXOS --set -A system
|
2007-02-06 13:09:25 +00:00
|
|
|
pathToConfig=/nix/var/nix/profiles/system
|
2007-02-06 13:12:10 +00:00
|
|
|
elif test "$action" = "test" -o "$action" = "build"; then
|
2007-09-18 15:06:24 +00:00
|
|
|
nix-build $NIXOS -A system -K -k
|
2007-02-06 13:09:25 +00:00
|
|
|
pathToConfig=./result
|
2007-02-06 13:12:10 +00:00
|
|
|
else
|
|
|
|
showSyntax
|
2007-02-06 13:09:25 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# If we're not just building, then make the new configuration the boot
|
|
|
|
# default and/or activate it now.
|
|
|
|
if test "$action" = "switch" -o "$action" = "boot" -o "$action" = "test"; then
|
|
|
|
$pathToConfig/bin/switch-to-configuration "$action"
|
|
|
|
fi
|
2007-02-06 13:20:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
if test "$action" = "test"; then
|
|
|
|
cat >&2 <<EOF
|
|
|
|
|
2007-02-06 13:21:15 +00:00
|
|
|
Warning: if you remove or overwrite the symlink \`$pathToConfig', the
|
|
|
|
active system configuration may be garbage collected! This may render
|
|
|
|
the system inoperable (though a reboot will fix things).
|
2007-02-06 13:20:53 +00:00
|
|
|
EOF
|
|
|
|
fi
|
2007-09-18 15:38:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
rm -f $HOME/nix-tmp
|