openbsd-ports/misc/migrationtools/patches/patch-migrate_passwd_pl
sthen 7f3f16eff8 Update to migrationtools-47, patch to adapt to our aliases file location,
and handle our master.passwd format - from viq

@sample the migrate_common.ph file which you are supposed to configure,
to avoid conflicts.
2012-03-23 11:17:01 +00:00

34 lines
1.0 KiB
Plaintext

$OpenBSD: patch-migrate_passwd_pl,v 1.2 2012/03/23 11:17:02 sthen Exp $
Our master.passwd differs from linux shadow, reflect this.
--- migrate_passwd.pl.orig Wed Jan 25 05:18:16 2006
+++ migrate_passwd.pl Fri Mar 2 23:42:40 2012
@@ -32,7 +32,7 @@
# SUCH DAMAGE.
#
#
-# Password migration tool. Migrates /etc/shadow as well, if it exists.
+# Password migration tool. Migrates /etc/master.passwd as well, if it exists.
#
# Thanks to Peter Jacob Slot <peter@vision.auk.dk>.
#
@@ -185,7 +185,7 @@ if (OUTFILE != STDOUT) { close(OUTFILE); }
sub read_shadow_file
{
- open(SHADOW, "/etc/shadow") || return;
+ open(SHADOW, "/etc/master.passwd") || return;
while(<SHADOW>) {
chop;
($shadowUser) = split(/:/, $_);
@@ -196,7 +196,7 @@ sub read_shadow_file
sub dump_shadow_attributes
{
- local($HANDLE, $user, $pwd, $lastchg, $min, $max, $warn, $inactive, $expire, $flag) = @_;
+ local($HANDLE, $user, $pwd, $uid, $gid, $class, $max, $expire, $gecos, $home, $shell) = @_;
print $HANDLE "objectClass: shadowAccount\n";
if ($pwd) {