2012-08-02 21:11:29 +02:00
|
|
|
|
#! @perl@
|
|
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
use warnings;
|
2012-08-02 23:26:23 +02:00
|
|
|
|
use File::Basename;
|
2012-08-02 21:11:29 +02:00
|
|
|
|
use File::Slurp;
|
2012-08-02 23:26:23 +02:00
|
|
|
|
use Cwd 'abs_path';
|
2012-08-02 21:11:29 +02:00
|
|
|
|
|
|
|
|
|
my $action = shift @ARGV;
|
|
|
|
|
|
|
|
|
|
if (!defined $action || ($action ne "switch" && $action ne "boot" && $action ne "test")) {
|
|
|
|
|
print STDERR <<EOF;
|
|
|
|
|
Usage: $0 [switch|boot|test]
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
EOF
|
|
|
|
|
exit 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
die "This is not a NixOS installation (/etc/NIXOS is missing)!\n" unless -f "/etc/NIXOS";
|
|
|
|
|
|
|
|
|
|
# Install or update the bootloader.
|
|
|
|
|
#system("@installBootLoader@ @out@") == 0 or exit 1 if $action eq "switch" || $action eq "boot";
|
|
|
|
|
exit 0 if $action eq "boot";
|
|
|
|
|
|
|
|
|
|
# Check if we can activate the new configuration.
|
|
|
|
|
my $oldVersion = read_file("/run/current-system/init-interface-version", err_mode => 'quiet') // "";
|
|
|
|
|
my $newVersion = read_file("@out@/init-interface-version");
|
|
|
|
|
|
|
|
|
|
if ($newVersion ne $oldVersion) {
|
|
|
|
|
print STDERR <<EOF;
|
|
|
|
|
Warning: the new NixOS configuration has an ‘init’ that is
|
|
|
|
|
incompatible with the current configuration. The new configuration
|
|
|
|
|
won\'t take effect until you reboot the system.
|
|
|
|
|
EOF
|
|
|
|
|
exit 100;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Ignore SIGHUP so that we're not killed if we're running on (say)
|
|
|
|
|
# virtual console 1 and we restart the "tty1" unit.
|
|
|
|
|
$SIG{PIPE} = "IGNORE";
|
|
|
|
|
|
2012-08-02 23:26:23 +02:00
|
|
|
|
sub getActiveUnits {
|
|
|
|
|
# FIXME: use D-Bus or whatever to query this, since parsing the
|
|
|
|
|
# output of list-units is likely to break.
|
|
|
|
|
my $lines = `@systemd@/bin/systemctl list-units --full`;
|
|
|
|
|
my $res = {};
|
|
|
|
|
foreach my $line (split '\n', $lines) {
|
|
|
|
|
chomp $line;
|
|
|
|
|
last if $line eq "";
|
|
|
|
|
$line =~ /^(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s/ or next;
|
|
|
|
|
next if $1 eq "UNIT";
|
|
|
|
|
$res->{$1} = { load => $2, state => $3, substate => $4 };
|
|
|
|
|
}
|
|
|
|
|
return $res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Stop all services that no longer exist or have changed in the new
|
|
|
|
|
# configuration.
|
|
|
|
|
# FIXME: handle template units (e.g. getty@.service).
|
|
|
|
|
my $active = getActiveUnits;
|
|
|
|
|
foreach my $unitFile (glob "/etc/systemd/system/*") {
|
|
|
|
|
next unless -f "$unitFile";
|
|
|
|
|
my $unit = basename $unitFile;
|
|
|
|
|
my $state = $active->{$unit};
|
|
|
|
|
if (defined $state && ($state->{state} eq "active" || $state->{state} eq "activating")) {
|
|
|
|
|
my $newUnitFile = "@out@/etc/systemd/system/$unit";
|
|
|
|
|
if (! -e $newUnitFile) {
|
|
|
|
|
print STDERR "stopping obsolete unit ‘$unit’...\n";
|
|
|
|
|
system("@systemd@/bin/systemctl", "stop", $unit); # FIXME: ignore errors?
|
|
|
|
|
} elsif (abs_path($unitFile) ne abs_path($newUnitFile)) {
|
|
|
|
|
print STDERR "stopping changed unit ‘$unit’...\n";
|
|
|
|
|
system("@systemd@/bin/systemctl", "stop", $unit); # FIXME: ignore errors?
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 21:11:29 +02:00
|
|
|
|
# Activate the new configuration (i.e., update /etc, make accounts,
|
|
|
|
|
# and so on).
|
|
|
|
|
my $res = 0;
|
|
|
|
|
print STDERR "activating the configuration...\n";
|
|
|
|
|
system("@out@/activate", "@out@") == 0 or $res = 2;
|
|
|
|
|
|
|
|
|
|
# FIXME: Re-exec systemd if necessary.
|
|
|
|
|
|
|
|
|
|
# Make systemd reload its units.
|
|
|
|
|
system("@systemd@/bin/systemctl", "daemon-reload") == 0 or $res = 3;
|
|
|
|
|
|
2012-08-02 23:26:23 +02:00
|
|
|
|
# Start all units required by the default target. This should start
|
|
|
|
|
# all changed units we stopped above as well as any new dependencies.
|
|
|
|
|
print STDERR "starting default target...\n";
|
|
|
|
|
system("@systemd@/bin/systemctl", "start", "default.target") == 0 or $res = 3;
|
|
|
|
|
|
2012-08-02 21:11:29 +02:00
|
|
|
|
# Signal dbus to reload its configuration.
|
|
|
|
|
system("@systemd@/bin/systemctl", "reload", "dbus.service");
|
|
|
|
|
|
|
|
|
|
exit $res;
|