Skip to content

Commit

Permalink
[fixup] Add msg when user/group is removed with no files
Browse files Browse the repository at this point in the history
  • Loading branch information
cgwalters committed Dec 8, 2014
1 parent fd26d40 commit 2c87684
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/rpmostree-passwd-util.c
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,9 @@ rpmostree_check_passwd (OstreeRepo *repo,
"User missing from new passwd file: %s", odata->name);
goto out;
}
else
g_print ("User removed from new passwd file: %s\n",
odata->name);
}

++oiter;
Expand Down Expand Up @@ -509,6 +512,9 @@ rpmostree_check_groups (OstreeRepo *repo,
"Group missing from new group file: %s", odata->name);
goto out;
}
else
g_print ("Group removed from new passwd file: %s\n",
odata->name);
}

++oiter;
Expand Down

0 comments on commit 2c87684

Please sign in to comment.