version 1.17, 2000/12/14 18:38:37
|
version 1.22, 2001/01/10 17:00:34
|
Line 146 elsif ($mode eq "BinaryRoot") {
|
Line 146 elsif ($mode eq "BinaryRoot") {
|
$a=&make_file_list(\@directories); |
$a=&make_file_list(\@directories); |
print OUT $a; |
print OUT $a; |
close OUT; |
close OUT; |
|
open OUT,">setup_file_list.txt"; |
|
print OUT "BinaryRoot/etc/passwd\n"; |
|
close OUT; |
|
open OUT,">BinaryRoot/etc/passwd"; |
|
print OUT<<END; |
|
root::0:0:root:/root:/bin/bash |
|
bin:*:1:1:bin:/bin: |
|
daemon:*:2:2:daemon:/sbin: |
|
adm:*:3:4:adm:/var/adm: |
|
lp:*:4:7:lp:/var/spool/lpd: |
|
sync:*:5:0:sync:/sbin:/bin/sync |
|
shutdown:*:6:0:shutdown:/sbin:/sbin/shutdown |
|
halt:*:7:0:halt:/sbin:/sbin/halt |
|
mail:*:8:12:mail:/var/spool/mail: |
|
news:*:9:13:news:/var/spool/news: |
|
uucp:*:10:14:uucp:/var/spool/uucp: |
|
operator:*:11:0:operator:/root: |
|
games:*:12:100:games:/usr/games: |
|
gopher:*:13:30:gopher:/usr/lib/gopher-data: |
|
ftp:*:14:50:FTP User:/home/ftp: |
|
nobody:*:99:99:Nobody:/: |
|
www:x:500:500:www:/home/www:/bin/bash |
|
END |
|
close OUT; |
|
|
} |
} |
elsif ($mode eq "status") { |
elsif ($mode eq "status") { |
} |
} |
Line 181 sub make_file_list {
|
Line 205 sub make_file_list {
|
my @allfiles=keys %{$info{'LOCATION'}{$distribution}}; |
my @allfiles=keys %{$info{'LOCATION'}{$distribution}}; |
foreach my $d (@$dirs) { |
foreach my $d (@$dirs) { |
# set other values |
# set other values |
|
$description.=<<END; |
|
BinaryRoot/$d |
|
END |
my $dirdescription=$info{'DIRECTORY'}{$distribution}{$d}{'DESCRIPTION'}; |
my $dirdescription=$info{'DIRECTORY'}{$distribution}{$d}{'DESCRIPTION'}; |
$dirdescription="(" . $dirdescription . ")" if $dirdescription; |
$dirdescription="(" . $dirdescription . ")" if $dirdescription; |
# find files that are contained in this directory |
# find files that are contained in this directory |
Line 248 END
|
Line 275 END
|
my $chmod=$info{'OWNERSHIP'}{$category}{'CHMOD'}; |
my $chmod=$info{'OWNERSHIP'}{$category}{'CHMOD'}; |
my $devchown=$info{'DEVOWNERSHIP'}{$category}{'CHOWN'}; |
my $devchown=$info{'DEVOWNERSHIP'}{$category}{'CHOWN'}; |
my $devchmod=$info{'DEVOWNERSHIP'}{$category}{'CHMOD'}; |
my $devchmod=$info{'DEVOWNERSHIP'}{$category}{'CHMOD'}; |
|
my ($owner,$group)=split(/\:/,$devchown); |
my $own=$devchown; $own=~s/\:/\,/; |
my $own=$devchown; $own=~s/\:/\,/; |
$description.=<<END; |
$description.=<<END; |
\tinstall -m $devchmod -d \$(TARGET)/$d |
\tinstall -o $owner -g $group -m $devchmod -d \$(TARGET)/$d |
END |
END |
} |
} |
$description.=<<END; |
$description.=<<END; |
Line 295 END
|
Line 323 END
|
my $source=$info{'LOCATION'}{$distribution}{$filesfull[$i]}{'SOURCE'}; |
my $source=$info{'LOCATION'}{$distribution}{$filesfull[$i]}{'SOURCE'}; |
my $rot=$filesfull[$i]; |
my $rot=$filesfull[$i]; |
$rot=~s/[^\/]+$/\./ if $rot=~/\*/; |
$rot=~s/[^\/]+$/\./ if $rot=~/\*/; |
|
my ($owner,$group)=split(/\:/,$devchown); |
$description.=<<END if $category ne 'symbolic link'; |
$description.=<<END if $category ne 'symbolic link'; |
\tinstall -m $devchmod \$(SOURCE)/$source \$(TARGET)/$rot |
\tinstall -o $owner -g $group -m $devchmod \$(SOURCE)/$source \$(TARGET)/$rot |
END |
END |
} |
} |
} |
} |