8 use FS::UID qw(adminsuidsetup datasrc);
9 use FS::Record qw(qsearch qsearchs);
17 my $user = shift or die &usage;
20 #needs the export number in there somewhere too...?
21 my $spooldir = "/usr/local/etc/freeside/export.". datasrc. "/apache";
22 mkdir $spooldir, 0700 unless -d $spooldir;
24 my @exports = qsearch('part_export', { 'exporttype' => 'apache' } );
26 my $rsync = File::Rsync->new({
31 foreach my $export ( @exports ) {
33 my $machine = $export->machine;
34 my $exportnum = $export->exportnum;
35 my $file = "$spooldir/$machine.exportnum$exportnum.conf";
37 warn "exporting apache configuration for $machine to $file\n"
40 open(HTTPD_CONF,">$file") or die "can't open $file: $!";
42 my @svc_www = $export->svc_x;
44 foreach my $svc_www ( @svc_www ) {
45 use vars qw($zone $username $dir $email $config);
46 $zone = $svc_www->domain_record->zone;
47 $config = $svc_www->config;
48 my $template = $export->option('template');
49 my $cust_pkg = $svc_www->cust_svc->cust_pkg;
50 if ( $cust_pkg->getfield('susp') or $cust_pkg->getfield('cancel') ) {
51 $template = $export->option('template_inactive')
52 || $export->option('template');
53 # Fall back to the regular template if template_inactive doesn't exist
55 if ( $svc_www->svc_acct ) {
56 $username = $svc_www->svc_acct->username;
57 $dir = $svc_www->svc_acct->dir;
58 $email = $svc_www->svc_acct->email;
65 warn " adding configuration section for $zone\n"
68 print HTTPD_CONF eval(qq("$template")). "\n\n";
71 my $user = $export->option('user');
72 my $httpd_conf = $export->option('httpd_conf');
74 warn "syncing $file to $httpd_conf on $machine\n"
79 dest => "$user\@$machine:$httpd_conf",
80 } ) or die "rsync to $machine failed: ". join(" / ", $rsync->err);
83 my $restart = $export->option('restart') || 'apachectl graceful';
85 warn "running restart command $restart on $machine\n"
88 ssh("root\@$machine", $restart);
97 die "Usage:\n apache.export [ -d ] user\n";