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
|
|
|
|
|
2012-08-03 17:53:14 +02:00
|
|
|
|
my $restartListFile = "/run/systemd/restart-list";
|
|
|
|
|
|
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.
|
2012-08-03 20:07:43 +02:00
|
|
|
|
if ($action eq "switch" || $action eq "boot") {
|
|
|
|
|
system("@installBootLoader@ @out@") == 0 or exit 1;
|
|
|
|
|
exit 0 if $action eq "boot";
|
|
|
|
|
}
|
2012-08-02 21:11:29 +02:00
|
|
|
|
|
|
|
|
|
# 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;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-03 16:40:01 +02:00
|
|
|
|
# Forget about previously failed services.
|
|
|
|
|
system("@systemd@/bin/systemctl", "reset-failed");
|
|
|
|
|
|
2012-08-02 23:26:23 +02:00
|
|
|
|
# Stop all services that no longer exist or have changed in the new
|
|
|
|
|
# configuration.
|
2012-08-03 19:29:56 +02:00
|
|
|
|
my @unitsToStop;
|
2012-08-03 23:13:34 +02:00
|
|
|
|
my $activePrev = getActiveUnits;
|
|
|
|
|
while (my ($unit, $state) = each %{$activePrev}) {
|
2012-08-03 19:47:59 +02:00
|
|
|
|
my $baseUnit = $unit;
|
|
|
|
|
# Recognise template instances.
|
|
|
|
|
$baseUnit = "$1\@.$2" if $unit =~ /^(.*)@[^\.]*\.(.*)$/;
|
2012-08-03 23:13:34 +02:00
|
|
|
|
my $prevUnitFile = "/etc/systemd/system/$baseUnit";
|
|
|
|
|
if (-e $prevUnitFile && ($state->{state} eq "active" || $state->{state} eq "activating")) {
|
2012-08-03 19:47:59 +02:00
|
|
|
|
my $newUnitFile = "@out@/etc/systemd/system/$baseUnit";
|
2012-08-02 23:26:23 +02:00
|
|
|
|
if (! -e $newUnitFile) {
|
2012-08-03 19:29:56 +02:00
|
|
|
|
push @unitsToStop, $unit;
|
2012-08-03 23:13:34 +02:00
|
|
|
|
} elsif (abs_path($prevUnitFile) ne abs_path($newUnitFile)) {
|
2012-08-03 17:53:14 +02:00
|
|
|
|
# Record that this unit needs to be started below. We
|
|
|
|
|
# write this to a file to ensure that the service gets
|
|
|
|
|
# restarted if we're interrupted.
|
|
|
|
|
write_file($restartListFile, { append => 1 }, "$unit\n");
|
2012-08-03 19:29:56 +02:00
|
|
|
|
push @unitsToStop, $unit;
|
2012-08-02 23:26:23 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-03 23:13:34 +02:00
|
|
|
|
if (scalar @unitsToStop > 0) {
|
|
|
|
|
print STDERR "stopping the following units: ", join(", ", sort(@unitsToStop)), "\n";
|
|
|
|
|
system("@systemd@/bin/systemctl", "stop", @unitsToStop); # FIXME: ignore errors?
|
|
|
|
|
}
|
2012-08-03 19:29:56 +02:00
|
|
|
|
|
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
|
2012-08-03 17:53:14 +02:00
|
|
|
|
# most changed units we stopped above as well as any new dependencies.
|
2012-08-02 23:26:23 +02:00
|
|
|
|
print STDERR "starting default target...\n";
|
2012-08-03 16:40:01 +02:00
|
|
|
|
system("@systemd@/bin/systemctl", "start", "default.target") == 0 or $res = 4;
|
2012-08-02 23:26:23 +02:00
|
|
|
|
|
2012-08-03 17:53:14 +02:00
|
|
|
|
# Start changed units we stopped above. This is necessary because
|
|
|
|
|
# some may not be dependencies of the default target (i.e., they were
|
|
|
|
|
# manually started).
|
|
|
|
|
my @stopped = split '\n', read_file($restartListFile, err_mode => 'quiet') // "";
|
|
|
|
|
if (scalar @stopped > 0) {
|
|
|
|
|
my %unique = map { $_, 1 } @stopped;
|
2012-08-03 19:47:59 +02:00
|
|
|
|
my @unique = sort(keys(%unique));
|
|
|
|
|
print STDERR "restarting the following units: ", join(", ", @unique), "\n";
|
|
|
|
|
system("@systemd@/bin/systemctl", "start", @unique) == 0 or $res = 4;
|
2012-08-03 17:53:14 +02:00
|
|
|
|
unlink($restartListFile);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 21:11:29 +02:00
|
|
|
|
# Signal dbus to reload its configuration.
|
|
|
|
|
system("@systemd@/bin/systemctl", "reload", "dbus.service");
|
|
|
|
|
|
2012-08-03 23:13:34 +02:00
|
|
|
|
# Print failed and new units.
|
2012-08-06 21:48:46 +02:00
|
|
|
|
my (@failed, @new, @restarting);
|
2012-08-03 23:13:34 +02:00
|
|
|
|
my $activeNew = getActiveUnits;
|
|
|
|
|
while (my ($unit, $state) = each %{$activeNew}) {
|
2012-08-06 21:48:46 +02:00
|
|
|
|
push @failed, $unit if $state->{state} eq "failed" || $state->{substate} eq "auto-restart";
|
2012-08-03 23:13:34 +02:00
|
|
|
|
push @new, $unit if $state->{state} ne "failed" && !defined $activePrev->{$unit};
|
2012-08-03 16:40:01 +02:00
|
|
|
|
}
|
2012-08-03 23:13:34 +02:00
|
|
|
|
|
|
|
|
|
print STDERR "the following new units were started: ", join(", ", sort(@new)), "\n"
|
|
|
|
|
if scalar @new > 0;
|
|
|
|
|
|
2012-08-03 16:40:01 +02:00
|
|
|
|
if (scalar @failed > 0) {
|
2012-08-03 19:47:59 +02:00
|
|
|
|
print STDERR "warning: the following units failed: ", join(", ", sort(@failed)), "\n";
|
2012-08-03 16:40:01 +02:00
|
|
|
|
foreach my $unit (@failed) {
|
|
|
|
|
print STDERR "\n";
|
2012-08-03 20:39:59 +02:00
|
|
|
|
system("COLUMNS=1000 @systemd@/bin/systemctl status --no-pager '$unit' >&2");
|
2012-08-03 16:40:01 +02:00
|
|
|
|
}
|
|
|
|
|
$res = 4;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 21:11:29 +02:00
|
|
|
|
exit $res;
|