summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2005-09-09 08:56:08 +0000
committerAntoine Ginies <aginies@mandriva.com>2005-09-09 08:56:08 +0000
commit54bb104804dbe46571eea872725f858f6d92d0fd (patch)
treea6cf5c2fd59d8049e58b4ea772560b0852cabeb7
parente8d7a2bfe17b7bf642a57c3ad1a8de180bfc4653 (diff)
downloaddrakwizard-54bb104804dbe46571eea872725f858f6d92d0fd.tar
drakwizard-54bb104804dbe46571eea872725f858f6d92d0fd.tar.gz
drakwizard-54bb104804dbe46571eea872725f858f6d92d0fd.tar.bz2
drakwizard-54bb104804dbe46571eea872725f858f6d92d0fd.tar.xz
drakwizard-54bb104804dbe46571eea872725f858f6d92d0fd.zip
fix test of old configuration files
-rwxr-xr-xkolab_wizard/Kolab.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/kolab_wizard/Kolab.pm b/kolab_wizard/Kolab.pm
index e398b6cd..3a5c0414 100755
--- a/kolab_wizard/Kolab.pm
+++ b/kolab_wizard/Kolab.pm
@@ -239,7 +239,7 @@ sub do_it_master_withoutca {
sub do_it_master {
return if $::testing;
my $oldconf;
- !-f "/etc/kolab/.kolab2_configured" and $oldconf = "y";
+ -f "/etc/kolab/.kolab2_configured" and $oldconf = "y";
MDK::Wizard::Wizcommon_gtk2::gtk_log("service kolab stop", "Kolab stop...");
my $in = 'interactive'->vnew('su', 'Kolab server');
my $w = $in->wait_message(N("Kolab server"), N("Configuring Kolab server on your system..."));