1
0
mirror of synced 2026-01-23 02:28:13 +00:00

Calls pwconv and grpconv inside chroot when installing Fedora (Closes: #499476)

This commit is contained in:
Axel Beckert 2010-03-11 00:56:48 +01:00
parent 2c14aab186
commit be1ef1850b
2 changed files with 8 additions and 0 deletions

2
debian/changelog vendored
View File

@ -18,6 +18,8 @@ xen-tools (4.2~rc1-1) UNRELEASED; urgency=low
* Don't write the FQDN into /etc/hostname (Closes: #492583)
* Dereference pointers before hashing them to generate a MAC
address. (Closes: #547265)
* Calls pwconv and grpconv inside chroot when installing Fedora (Closes:
#499476)
* Fix typo in /usr/lib/xen-tools/*.d/75-fixup-securetty (Closes:
#503339)
* Downgrade reiserfsprogs, xfsprogs and rinse to Suggests. (Closes:

View File

@ -21,6 +21,12 @@ my $prefix = shift;
die "Prefix must be given" unless defined( $prefix );
die "Prefix must be a directory" unless ( -d $prefix );
#
# Setup /etc/shadow and /etc/gshadow (Closes: #499476)
#
system( "chroot $prefix /usr/sbin/pwconv" );
system( "chroot $prefix /usr/sbin/grpconv" );
#
# Exit unless the 'accounts' variable is set.