blob: b61d47fd84bdf5c49c95959b75481b996a23ba8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/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( "firebird" ) ) {
( $null, $null, $fbUID ) = getpwnam( "firebird" );
} else {
$fbUID = 90;
while( getpwuid( $fbUID ) ) {
$fbUID++;
}
}
if( getgrnam( "firebird" ) ) {
( $null, $null, $fbGID ) = getgrnam( "firebird" );
} else {
$fbGID = 90;
while( getgrgid( $fbGID ) ) {
$fbGID++;
}
&append_file( "/etc/group", "firebird:*:$fbGID:" );
}
print "firebird user using uid $fbUID\n";
print "firebird user using gid $fbGID\n";
system( "/usr/bin/chpass -a \"firebird:*:$fbUID:$fbGID\:\:0:0:Firebird pseudo-user:$ENV{'PREFIX'}/firebird:/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 );
}
|