Skip to content

Commit

Permalink
- fixed last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
aschnell committed Jan 10, 2013
1 parent 385600e commit d522479
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions storage/src/modules/Storage.ycp
Expand Up @@ -5258,28 +5258,28 @@ global list<string> AddPackageList()

if (need_lvm)
{
pl = add(pl, "lvm2");
pl = (list<string>) union( pl, ["lvm2"] );
}

//nfs-client needs to be marked for installation if we have
//some NFS shares. It will pull in portmapper package(#436897)
if (need_nfs)
{
pl = union( pl, ["nfs-client", "yast2-nfs-client"] );
pl = (list<string>) union( pl, ["nfs-client", "yast2-nfs-client"] );
}
if( need_quota )
{
pl = add( pl, "quota" );
pl = (list<string>) union( pl, ["quota"] );
}
if( need_crypt )
{
pl = union( pl, ["cryptsetup", "cryptsetup-mkinitrd", "pam_mount"] );
pl = (list<string>) union( pl, ["cryptsetup", "cryptsetup-mkinitrd", "pam_mount"] );
}

map part = GetEntryForMountpoint("/");
if (part["used_fs"]:`unknown == `btrfs)
{
pl = union( pl, ["snapper", "yast2-snapper"] );
pl = (list<string>) union( pl, ["snapper", "yast2-snapper"] );
}

y2milestone("AddPackageList ret %1", pl);
Expand Down

1 comment on commit d522479

@kobliha
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, sorry for that, ycpc said it was OK.

Please sign in to comment.