version 1.1, 2000/10/26 00:09:58
|
version 1.6, 2000/11/02 17:30:45
|
Line 10
|
Line 10
|
use strict; |
use strict; |
|
|
my @special_conf_files=( |
my @special_conf_files=( |
"/etc/httpd/conf/access.conf" |
"/etc/httpd/conf/access.conf", |
|
"/etc/smb.conf" |
); |
); |
|
|
my @generic_conf_files=( |
my @generic_conf_files=( |
"/home/httpd/lonTabs/hosts.tab", |
"/home/httpd/lonTabs/hosts.tab", |
"/home/httpd/lonTabs/spare.tab", |
"/home/httpd/lonTabs/spare.tab", |
"/etc/krb.conf", |
"/etc/krb.conf", |
"/etc/ntp.conf" |
"/etc/ntp.conf", |
); |
); |
|
|
|
my @perlsetvars=("lonHostID","lonRole","lonAdmEMail","lonDefDomain","lonLoadLim","lonExpire"); |
|
my %pvar; |
foreach (@special_conf_files) { |
foreach (@special_conf_files) { |
if (/^/etc/httpd/conf/access.conf$/) { |
if (/^\/etc\/httpd\/conf\/access.conf$/) { |
my @perlsetvars=("lonHostID","lonRole","lonAdmEMail","lonDefDomain","lonLoadLim","lonExpire"); |
my $template=`/bin/cat /etc/httpd/conf/access.conf`; |
|
my $rpmsave=`/bin/cat /etc/httpd/conf/access.conf.rpmsave`; |
|
`/bin/mv /etc/httpd/conf/access.conf /etc/httpd/conf/access.conf.template`; |
|
foreach my $psv (@perlsetvars) { |
|
$rpmsave=~/\nPerlSetVar\s+$psv\s+(\S+)/; |
|
my $pval=$1; |
|
$template=~s/(\nPerlSetVar\s+$psv\s+)\S+/$1$pval/; |
|
$pvar{$psv}=$pval; |
|
} |
|
open OUT,">/etc/httpd/conf/access.conf"; |
|
print OUT $template; |
|
close OUT; |
|
} |
|
if (/^\/etc\/smb.conf$/) { |
|
my $template=`/bin/cat /etc/httpd/conf/access.conf`; |
|
foreach my $psv (@perlsetvars) { |
|
$template=~s/\{\{\{\{\[(.*?)\]\}\}\}\}/$pvar{$1}/ge; |
|
} |
|
open OUT,">/etc/smb.conf"; |
|
print OUT $template; |
|
close OUT; |
} |
} |
} |
} |
|
|
foreach (@generic_conf_files) { |
foreach (@generic_conf_files) { |
`/bin/mv $_ $_.template`; |
if (-e "$_.rpmsave") { |
`/bin/mv $_.rpmsave $_`; |
`/bin/mv $_ $_.template`; |
|
`/bin/mv $_.rpmsave $_`; |
|
} |
} |
} |