diff options
author | Antoine Ginies <aginies@mandriva.com> | 2005-09-09 08:56:08 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2005-09-09 08:56:08 +0000 |
commit | 54bb104804dbe46571eea872725f858f6d92d0fd (patch) | |
tree | a6cf5c2fd59d8049e58b4ea772560b0852cabeb7 /kolab_wizard | |
parent | e8d7a2bfe17b7bf642a57c3ad1a8de180bfc4653 (diff) | |
download | drakwizard-54bb104804dbe46571eea872725f858f6d92d0fd.tar drakwizard-54bb104804dbe46571eea872725f858f6d92d0fd.tar.gz drakwizard-54bb104804dbe46571eea872725f858f6d92d0fd.tar.bz2 drakwizard-54bb104804dbe46571eea872725f858f6d92d0fd.tar.xz drakwizard-54bb104804dbe46571eea872725f858f6d92d0fd.zip |
fix test of old configuration files
Diffstat (limited to 'kolab_wizard')
-rwxr-xr-x | kolab_wizard/Kolab.pm | 2 |
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...")); |