2007-02-06 14:09:25 +01:00
|
|
|
|
#! @shell@ -e
|
|
|
|
|
|
2007-02-06 14:12:10 +01:00
|
|
|
|
showSyntax() {
|
2007-02-06 14:09:25 +01:00
|
|
|
|
# !!! more or less cut&paste from
|
|
|
|
|
# system/switch-to-configuration.sh (which we call, of course).
|
|
|
|
|
cat <<EOF
|
2009-08-03 14:36:15 +02:00
|
|
|
|
Usage: $0 [OPTIONS...] OPERATION
|
2008-08-04 17:04:06 +02:00
|
|
|
|
|
2009-08-03 14:36:15 +02:00
|
|
|
|
The operation is one of the following:
|
2008-08-26 21:44:54 +02:00
|
|
|
|
|
2009-08-11 03:35:56 +02:00
|
|
|
|
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
|
|
|
|
|
build-vm: build a virtual machine containing the configuration
|
|
|
|
|
(useful for testing)
|
2010-09-13 14:34:58 +02:00
|
|
|
|
build-vm-with-bootloader:
|
|
|
|
|
like build-vm, but include a boot loader in the VM
|
2009-08-11 03:35:56 +02:00
|
|
|
|
dry-run: just show what store paths would be built/downloaded
|
2009-08-03 14:36:15 +02:00
|
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
2012-06-25 22:17:34 +02:00
|
|
|
|
--upgrade fetch the latest version of NixOS before rebuilding
|
2009-08-03 14:36:15 +02:00
|
|
|
|
--install-grub (re-)install the Grub bootloader
|
|
|
|
|
--no-build-nix don't build the latest Nix from Nixpkgs before
|
|
|
|
|
building NixOS
|
2009-08-19 17:04:19 +02:00
|
|
|
|
--rollback restore the previous NixOS configuration (only
|
|
|
|
|
with switch, boot, test, build)
|
2009-08-03 14:36:15 +02:00
|
|
|
|
|
2012-04-18 13:46:16 +02:00
|
|
|
|
--fast same as --no-build-nix --show-trace
|
2009-10-15 01:56:11 +02:00
|
|
|
|
|
2009-08-03 14:36:15 +02:00
|
|
|
|
Various nix-build options are also accepted, in particular:
|
|
|
|
|
|
|
|
|
|
--show-trace show a detailed stack trace for evaluation errors
|
2012-09-14 19:23:19 +02:00
|
|
|
|
|
2008-08-27 11:37:44 +02:00
|
|
|
|
Environment variables affecting nixos-rebuild:
|
|
|
|
|
|
2012-09-14 19:23:19 +02:00
|
|
|
|
\$NIX_PATH Nix expression search path
|
2009-08-03 14:36:15 +02:00
|
|
|
|
\$NIXOS_CONFIG path to the NixOS system configuration specification
|
2007-02-06 14:09:25 +01:00
|
|
|
|
EOF
|
|
|
|
|
exit 1
|
2007-02-06 14:12:10 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-08-04 16:58:26 +02:00
|
|
|
|
|
|
|
|
|
# Parse the command line.
|
2012-11-22 12:04:00 +01:00
|
|
|
|
extraBuildFlags=()
|
2008-08-04 16:58:26 +02:00
|
|
|
|
action=
|
2009-08-03 14:36:15 +02:00
|
|
|
|
buildNix=1
|
2009-08-19 17:04:19 +02:00
|
|
|
|
rollback=
|
2012-06-25 22:17:34 +02:00
|
|
|
|
upgrade=
|
2013-07-23 20:31:03 +02:00
|
|
|
|
repair=
|
2008-08-04 16:58:26 +02:00
|
|
|
|
|
2013-01-16 13:21:59 +01:00
|
|
|
|
while [ "$#" -gt 0 ]; do
|
2009-08-03 14:36:15 +02:00
|
|
|
|
i="$1"; shift 1
|
2010-01-03 14:36:23 +01:00
|
|
|
|
case "$i" in
|
|
|
|
|
--help)
|
2008-08-04 16:58:26 +02:00
|
|
|
|
showSyntax
|
2012-06-25 22:17:34 +02:00
|
|
|
|
;;
|
2012-12-08 19:00:06 +01:00
|
|
|
|
switch|boot|test|build|dry-run|build-vm|build-vm-with-bootloader)
|
2008-08-04 16:58:26 +02:00
|
|
|
|
action="$i"
|
2012-06-25 22:17:34 +02:00
|
|
|
|
;;
|
2010-01-03 14:36:23 +01:00
|
|
|
|
--install-grub)
|
2009-08-03 14:36:15 +02:00
|
|
|
|
export NIXOS_INSTALL_GRUB=1
|
2012-06-25 22:17:34 +02:00
|
|
|
|
;;
|
2010-01-03 14:36:23 +01:00
|
|
|
|
--no-build-nix)
|
2009-08-03 14:36:15 +02:00
|
|
|
|
buildNix=
|
2012-06-25 22:17:34 +02:00
|
|
|
|
;;
|
2010-01-03 14:36:23 +01:00
|
|
|
|
--rollback)
|
2009-08-19 17:04:19 +02:00
|
|
|
|
rollback=1
|
2012-06-25 22:17:34 +02:00
|
|
|
|
;;
|
|
|
|
|
--upgrade)
|
|
|
|
|
upgrade=1
|
|
|
|
|
;;
|
2013-07-23 20:31:03 +02:00
|
|
|
|
--repair)
|
|
|
|
|
repair=1
|
|
|
|
|
extraBuildFlags+=("$i")
|
|
|
|
|
;;
|
2013-08-10 23:51:44 +02:00
|
|
|
|
--show-trace|--no-build-hook|--keep-failed|-K|--keep-going|-k|--verbose|-v|-vv|-vvv|-vvvv|-vvvvv|--fallback|--repair)
|
2012-11-22 12:04:00 +01:00
|
|
|
|
extraBuildFlags+=("$i")
|
2012-06-25 22:17:34 +02:00
|
|
|
|
;;
|
2012-03-02 14:31:12 +01:00
|
|
|
|
--max-jobs|-j|--cores|-I)
|
2011-03-07 13:12:39 +01:00
|
|
|
|
j="$1"; shift 1
|
2012-11-22 12:04:00 +01:00
|
|
|
|
extraBuildFlags+=("$i" "$j")
|
2012-06-25 22:17:34 +02:00
|
|
|
|
;;
|
2012-09-14 19:23:19 +02:00
|
|
|
|
--option)
|
|
|
|
|
j="$1"; shift 1
|
|
|
|
|
k="$1"; shift 1
|
2012-11-22 12:04:00 +01:00
|
|
|
|
extraBuildFlags+=("$i" "$j" "$k")
|
2012-09-14 19:23:19 +02:00
|
|
|
|
;;
|
2010-01-03 14:36:23 +01:00
|
|
|
|
--fast)
|
2009-10-15 01:56:11 +02:00
|
|
|
|
buildNix=
|
2012-11-22 12:04:00 +01:00
|
|
|
|
extraBuildFlags+=(--show-trace)
|
2012-06-25 22:17:34 +02:00
|
|
|
|
;;
|
2010-01-03 14:36:23 +01:00
|
|
|
|
*)
|
2008-08-04 16:58:26 +02:00
|
|
|
|
echo "$0: unknown option \`$i'"
|
|
|
|
|
exit 1
|
2012-06-25 22:17:34 +02:00
|
|
|
|
;;
|
2010-01-03 14:36:23 +01:00
|
|
|
|
esac
|
2008-08-04 16:58:26 +02:00
|
|
|
|
done
|
|
|
|
|
|
2013-01-16 13:21:59 +01:00
|
|
|
|
if [ -z "$action" ]; then showSyntax; fi
|
2007-02-06 14:09:25 +01:00
|
|
|
|
|
2013-01-16 13:21:59 +01:00
|
|
|
|
if [ -n "$rollback" ]; then
|
2009-08-19 17:04:19 +02:00
|
|
|
|
buildNix=
|
|
|
|
|
fi
|
|
|
|
|
|
2007-02-06 14:09:25 +01:00
|
|
|
|
|
2009-08-03 14:44:45 +02:00
|
|
|
|
tmpDir=$(mktemp -t -d nixos-rebuild.XXXXXX)
|
|
|
|
|
trap 'rm -rf "$tmpDir"' EXIT
|
|
|
|
|
|
|
|
|
|
|
2008-06-04 11:01:54 +02:00
|
|
|
|
# If the Nix daemon is running, then use it. This allows us to use
|
|
|
|
|
# the latest Nix from Nixpkgs (below) for expression evaluation, while
|
|
|
|
|
# still using the old Nix (via the daemon) for actual store access.
|
|
|
|
|
# This matters if the new Nix in Nixpkgs has a schema change. It
|
|
|
|
|
# would upgrade the schema, which should only happen once we actually
|
|
|
|
|
# switch to the new configuration.
|
2013-07-23 20:31:03 +02:00
|
|
|
|
# If --repair is given, don't try to use the Nix daemon, because the
|
|
|
|
|
# flag can only be used directly.
|
|
|
|
|
if [ -z "$repair" ] && systemctl show nix-daemon.socket nix-daemon.service | grep -q ActiveState=active; then
|
2008-06-04 11:01:54 +02:00
|
|
|
|
export NIX_REMOTE=${NIX_REMOTE:-daemon}
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
2012-06-25 22:17:34 +02:00
|
|
|
|
# If ‘--upgrade’ is given, run ‘nix-channel --update nixos’.
|
|
|
|
|
if [ -n "$upgrade" ]; then
|
|
|
|
|
nix-channel --update nixos
|
|
|
|
|
fi
|
2010-07-14 16:18:27 +02:00
|
|
|
|
|
2007-08-15 14:01:20 +02:00
|
|
|
|
|
2007-09-18 17:38:05 +02: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.
|
2013-01-16 16:11:51 +01:00
|
|
|
|
if [ "$action" != dry-run -a -n "$buildNix" ]; then
|
2009-12-09 19:23:48 +01:00
|
|
|
|
echo "building Nix..." >&2
|
2012-11-22 12:04:00 +01:00
|
|
|
|
if ! nix-build '<nixos>' -A config.environment.nix -o $tmpDir/nix "${extraBuildFlags[@]}" > /dev/null; then
|
|
|
|
|
if ! nix-build '<nixos>' -A nixFallback -o $tmpDir/nix "${extraBuildFlags[@]}" > /dev/null; then
|
|
|
|
|
nix-build '<nixpkgs>' -A nixUnstable -o $tmpDir/nix "${extraBuildFlags[@]}" > /dev/null
|
2010-03-04 15:38:53 +01:00
|
|
|
|
fi
|
2008-03-13 11:17:42 +01:00
|
|
|
|
fi
|
2009-08-03 14:44:45 +02:00
|
|
|
|
PATH=$tmpDir/nix/bin:$PATH
|
2008-01-02 16:30:31 +01:00
|
|
|
|
fi
|
2007-09-18 17:38:05 +02:00
|
|
|
|
|
|
|
|
|
|
2013-01-16 14:40:41 +01:00
|
|
|
|
# Update the version suffix if we're building from Git (so that
|
|
|
|
|
# nixos-version shows something useful).
|
|
|
|
|
if nixos=$(nix-instantiate --find-file nixos "${extraBuildFlags[@]}"); then
|
2013-01-23 11:31:48 +01:00
|
|
|
|
suffix=$(@shell@ $nixos/modules/installer/tools/get-version-suffix "${extraBuildFlags[@]}")
|
2013-01-16 14:40:41 +01:00
|
|
|
|
if [ -n "$suffix" ]; then
|
2013-06-05 17:09:34 +02:00
|
|
|
|
echo -n "$suffix" > "$nixos/.version-suffix" || true
|
2013-01-16 14:40:41 +01:00
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
2013-01-16 16:11:51 +01:00
|
|
|
|
if [ "$action" = dry-run ]; then
|
|
|
|
|
extraBuildFlags+=(--dry-run)
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
2007-02-06 14:09:25 +01: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").
|
2013-01-16 13:21:59 +01:00
|
|
|
|
if [ -z "$rollback" ]; then
|
2009-12-09 19:23:48 +01:00
|
|
|
|
echo "building the system configuration..." >&2
|
2013-01-16 13:21:59 +01:00
|
|
|
|
if [ "$action" = switch -o "$action" = boot ]; then
|
2012-11-22 12:04:00 +01:00
|
|
|
|
nix-env "${extraBuildFlags[@]}" -p /nix/var/nix/profiles/system -f '<nixos>' --set -A system
|
2011-10-30 16:19:58 +01:00
|
|
|
|
pathToConfig=/nix/var/nix/profiles/system
|
2013-01-16 13:21:59 +01:00
|
|
|
|
elif [ "$action" = test -o "$action" = build -o "$action" = dry-run ]; then
|
2012-11-22 12:04:00 +01:00
|
|
|
|
nix-build '<nixos>' -A system -K -k "${extraBuildFlags[@]}" > /dev/null
|
2009-08-19 17:04:19 +02:00
|
|
|
|
pathToConfig=./result
|
2010-09-13 14:34:58 +02:00
|
|
|
|
elif [ "$action" = build-vm ]; then
|
2012-11-22 12:04:00 +01:00
|
|
|
|
nix-build '<nixos>' -A vm -K -k "${extraBuildFlags[@]}" > /dev/null
|
2009-08-19 17:04:19 +02:00
|
|
|
|
pathToConfig=./result
|
2010-09-13 14:34:58 +02:00
|
|
|
|
elif [ "$action" = build-vm-with-bootloader ]; then
|
2012-11-22 12:04:00 +01:00
|
|
|
|
nix-build '<nixos>' -A vmWithBootLoader -K -k "${extraBuildFlags[@]}" > /dev/null
|
2010-09-13 14:34:58 +02:00
|
|
|
|
pathToConfig=./result
|
2009-08-19 17:04:19 +02:00
|
|
|
|
else
|
|
|
|
|
showSyntax
|
|
|
|
|
fi
|
2013-01-16 13:21:59 +01:00
|
|
|
|
else # [ -n "$rollback" ]
|
|
|
|
|
if [ "$action" = switch -o "$action" = boot ]; then
|
2011-10-30 16:19:58 +01:00
|
|
|
|
nix-env --rollback -p /nix/var/nix/profiles/system
|
|
|
|
|
pathToConfig=/nix/var/nix/profiles/system
|
2013-01-16 13:21:59 +01:00
|
|
|
|
elif [ "$action" = test -o "$action" = build ]; then
|
2009-08-19 17:04:19 +02:00
|
|
|
|
systemNumber=$(
|
2011-10-30 16:19:58 +01:00
|
|
|
|
nix-env -p /nix/var/nix/profiles/system --list-generations |
|
2009-08-19 17:04:19 +02:00
|
|
|
|
sed -n '/current/ {g; p;}; s/ *\([0-9]*\).*/\1/; h'
|
|
|
|
|
)
|
2011-10-30 16:19:58 +01:00
|
|
|
|
ln -sT /nix/var/nix/profiles/system-${systemNumber}-link ./result
|
2009-08-19 17:04:19 +02:00
|
|
|
|
pathToConfig=./result
|
|
|
|
|
else
|
|
|
|
|
showSyntax
|
|
|
|
|
fi
|
2007-02-06 14:09:25 +01:00
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# If we're not just building, then make the new configuration the boot
|
|
|
|
|
# default and/or activate it now.
|
2013-01-16 13:21:59 +01:00
|
|
|
|
if [ "$action" = switch -o "$action" = boot -o "$action" = test ]; then
|
2007-02-06 14:09:25 +01:00
|
|
|
|
$pathToConfig/bin/switch-to-configuration "$action"
|
|
|
|
|
fi
|
2007-02-06 14:20:53 +01:00
|
|
|
|
|
|
|
|
|
|
2013-01-16 13:21:59 +01:00
|
|
|
|
if [ "$action" = build-vm ]; then
|
2009-08-11 03:35:56 +02:00
|
|
|
|
cat >&2 <<EOF
|
|
|
|
|
|
|
|
|
|
Done. The virtual machine can be started by running $(echo $pathToConfig/bin/run-*-vm).
|
|
|
|
|
EOF
|
|
|
|
|
fi
|