#!/usr/bin/perl -w

my ${exec_prefix};
my ${prefix};

${prefix}="/opt/nagios";
${exec_prefix}="${prefix}";
while ($f = shift @ARGV) {

	if (-x "/bin/mktemp") { 
		$TEMP = `/bin/mktemp $f.$$.XXXXXX`;
		die 'Cannot make temporary file $TEMP' if($?);
		chomp $TEMP;
	} else {
		$XXXXXX = rand;
		$TEMP = "$f.$$.$XXXXXX";
	}

	open(IN,"<$f.in");
	open(OUT,">$TEMP") || die 'Cannot make temporary file $TEMP';

	while (<IN>) {
		s|\@nagios_user\@|nagios|g;
		s|\@nagios_grp\@|nagios|g;
		s|\@lockfile\@|${prefix}/var/nagios.lock|g;
		s|\@libexecdir\@|${exec_prefix}/libexec|g; # put all --with-vars before directories
		s|\@localstatedir\@|${prefix}/var|g;
		s|\@sysconfdir\@|${prefix}/etc|g;
		s|\@TMPDIR\@|/tmp|g;
		s|\@CHECKRESULTDIR\@|${prefix}/var/spool/checkresults|g;
		s|\@datadir\@|${prefix}/share|g;
		s|\@sbindir\@|${exec_prefix}/sbin|g;
		s|\@bindir\@|${exec_prefix}/bin|g;
		s|\@htmurl\@|/nagios/|g;
		s|\@cgiurl\@|/nagios/cgi-bin|g;
		s|\@MAIL_PROG\@|/usr/bin/mail|g;
		s|\@VERSION\@|3.0.6|g;
		s|\$\{exec_prefix\}|${prefix}|g; # must be next to last
		s|\$\{prefix\}|/opt/nagios|g; # must be last
		print OUT $_;
	}

	close IN;
	close OUT;

	if ((! -e $f) || (`diff $f $TEMP`)) {
		`mv $TEMP $f`;
	} else {
	         unlink $TEMP;
	}

}
