forked from lix-project/lix
parent
1bda006b74
commit
9fd9dedf12
|
@ -105,7 +105,8 @@ also <xref linkend="sec-common-options" />.</phrase></para>
|
||||||
|
|
||||||
<listitem><para>For the <option>--install</option>,
|
<listitem><para>For the <option>--install</option>,
|
||||||
<option>--upgrade</option>, <option>--uninstall</option>,
|
<option>--upgrade</option>, <option>--uninstall</option>,
|
||||||
<option>--switch-generation</option> and
|
<option>--switch-generation</option>,
|
||||||
|
<option>--delete-generations</option> and
|
||||||
<option>--rollback</option> operations, this flag will cause
|
<option>--rollback</option> operations, this flag will cause
|
||||||
<command>nix-env</command> to print what
|
<command>nix-env</command> to print what
|
||||||
<emphasis>would</emphasis> be done if this flag had not been
|
<emphasis>would</emphasis> be done if this flag had not been
|
||||||
|
|
|
@ -1205,10 +1205,15 @@ static void opListGenerations(Globals & globals,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void deleteGeneration2(const Path & profile, unsigned int gen)
|
static void deleteGeneration2(Globals & globals, unsigned int gen)
|
||||||
{
|
{
|
||||||
printMsg(lvlInfo, format("removing generation %1%") % gen);
|
if (globals.dryRun)
|
||||||
deleteGeneration(profile, gen);
|
printMsg(lvlInfo, format("would remove generation %1%") % gen);
|
||||||
|
else {
|
||||||
|
printMsg(lvlInfo, format("removing generation %1%") % gen);
|
||||||
|
deleteGeneration(globals.profile, gen);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1229,7 +1234,7 @@ static void opDeleteGenerations(Globals & globals,
|
||||||
if (*i == "old") {
|
if (*i == "old") {
|
||||||
for (Generations::iterator j = gens.begin(); j != gens.end(); ++j)
|
for (Generations::iterator j = gens.begin(); j != gens.end(); ++j)
|
||||||
if (j->number != curGen)
|
if (j->number != curGen)
|
||||||
deleteGeneration2(globals.profile, j->number);
|
deleteGeneration2(globals, j->number);
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
|
@ -1239,7 +1244,7 @@ static void opDeleteGenerations(Globals & globals,
|
||||||
bool found = false;
|
bool found = false;
|
||||||
for (Generations::iterator j = gens.begin(); j != gens.end(); ++j) {
|
for (Generations::iterator j = gens.begin(); j != gens.end(); ++j) {
|
||||||
if (j->number == n) {
|
if (j->number == n) {
|
||||||
deleteGeneration2(globals.profile, j->number);
|
deleteGeneration2(globals, j->number);
|
||||||
found = true;
|
found = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue