--- condor_configure.orig Thu Feb 1 07:11:10 2007 +++ condor_configure Sat Apr 28 18:26:02 2007 @@ -134,6 +134,7 @@ $opt_maybe_daemon_owner, $opt_install_log, $opt_verbose, + $opt_overwrite, ); @@ -482,6 +483,7 @@ "install-log=s" => \$opt_install_log, "verbose!" => \$opt_verbose, "help" => sub {print $Usage; exit 0}, + "overwrite" => \$opt_overwrite, ) or die $Usage; if ($opt_local_dir && !($opt_local_dir =~ m/^\//)) { @@ -629,7 +631,7 @@ # Move the sbin directories instead of overwriting them, # so that the running daemons don't blow up - if ( -d "$release_dir/sbin" ) { + if ( !$opt_overwrite && -d "$release_dir/sbin" ) { rename ("$release_dir/sbin", "$release_dir/sbin.old.$timestamp") or die "Unable to move $release_dir/sbin!\n"; }