1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/databases/postgresql73-server/scripts/createuser
James FitzGibbon 05209f589d Import of Postgres95, a next-generation DMBS research prototype.
Reviewed by:	jfitz@FreeBSD.ORG
Submitted by:	Matthew Stein <matt@bdd.net>
1996-09-23 22:40:15 +00:00

51 lines
1.0 KiB
Perl

#!/usr/bin/perl
#
eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
& eval 'exec /usr/bin/perl -S $0 $argv:q'
if 0;
if( $> ) {
print "\nYou must be root to run this step!\n\n";
exit 1;
}
if( getpwnam( "postgres" ) ) {
( $null, $null, $pgUID ) = getpwnam( "postgres" );
} else {
$pgUID = 70;
while( getpwuid( $pgUID ) ) {
$pgUID++;
}
}
if( getgrnam( "postgres" ) ) {
( $null, $null, $pgGID ) = getgrnam( "postgres" );
} else {
$pgGID = 70;
while( getgrgid( $pgGID ) ) {
$pgGID++;
}
&append_file( "/etc/group", "postgres:*:$pgGID:" );
}
print "postgres user using uid $pgUID\n";
print "postgres user using gid $pgGID\n";
system( "/usr/bin/chpass -a \"postgres:*:$pgUID:$pgGID::0:0:Postgres95 pseudo-user:$ENV{'PREFIX'}/postgres95:/bin/sh\"" );
sub append_file {
local($file,@list) = @_;
local($LOCK_EX) = 2;
local($LOCK_NB) = 4;
local($LOCK_UN) = 8;
open(F, ">> $file") || die "$file: $!\n";
while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) {
exit 1;
}
print F join( "\n", @list) . "\n";
close F;
flock( F, $LOCK_UN );
}