53 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Text
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Text
		
	
	
		
			Executable file
		
	
	
	
	
#! @perl@ -w
 | 
						|
 | 
						|
use strict;
 | 
						|
 | 
						|
my $profilesDir = "@localstatedir@/nix/profiles";
 | 
						|
 | 
						|
my $binDir = $ENV{"NIX_BIN_DIR"} || "@bindir@";
 | 
						|
 | 
						|
 | 
						|
# Process the command line arguments.
 | 
						|
my @args = ();
 | 
						|
my $removeOld = 0;
 | 
						|
 | 
						|
for my $arg (@ARGV) {
 | 
						|
    if ($arg eq "--delete-old" || $arg eq "-d") {
 | 
						|
        $removeOld = 1;
 | 
						|
    } else {
 | 
						|
        push @args, $arg;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
# If `-d' was specified, remove all old generations of all profiles.
 | 
						|
# Of course, this makes rollbacks to before this point in time
 | 
						|
# impossible.
 | 
						|
 | 
						|
sub removeOldGenerations;
 | 
						|
sub removeOldGenerations {
 | 
						|
    my $dir = shift;
 | 
						|
 | 
						|
    my $dh;
 | 
						|
    opendir $dh, $dir or die;
 | 
						|
 | 
						|
    foreach my $name (sort (readdir $dh)) {
 | 
						|
        next if $name eq "." || $name eq "..";
 | 
						|
        $name = $dir . "/" . $name;
 | 
						|
        if (-l $name && (readlink($name) =~ /link/)) {
 | 
						|
            print STDERR "removing old generations of profile $name\n";
 | 
						|
            system("$binDir/nix-env", "-p", $name, "--delete-generations", "old");
 | 
						|
        }
 | 
						|
        elsif (! -l $name && -d $name) {
 | 
						|
            removeOldGenerations $name;
 | 
						|
        }
 | 
						|
    }
 | 
						|
    
 | 
						|
    closedir $dh or die;
 | 
						|
}
 | 
						|
 | 
						|
removeOldGenerations $profilesDir if $removeOld;
 | 
						|
 | 
						|
 | 
						|
# Run the actual garbage collector.
 | 
						|
exec "$binDir/nix-store", "--gc", @args;
 |