diff options
author | Nicolas Vigier <nvigier@mandriva.com> | 2008-03-05 16:34:38 +0000 |
---|---|---|
committer | Nicolas Vigier <nvigier@mandriva.com> | 2008-03-05 16:34:38 +0000 |
commit | 1ea920072c09c49c019188e7d30b7fca1e6e8391 (patch) | |
tree | 433600c92ac24c915f53e9bd981e19cbcc965c5f /postfix_wizard/scripts/testlabel.pl | |
parent | de522045836b90f9067ebbd04ee2895e3c5e7e11 (diff) | |
download | drakwizard-1ea920072c09c49c019188e7d30b7fca1e6e8391.tar drakwizard-1ea920072c09c49c019188e7d30b7fca1e6e8391.tar.gz drakwizard-1ea920072c09c49c019188e7d30b7fca1e6e8391.tar.bz2 drakwizard-1ea920072c09c49c019188e7d30b7fca1e6e8391.tar.xz drakwizard-1ea920072c09c49c019188e7d30b7fca1e6e8391.zip |
remove and don't install disabled wizards so that mcc doesn't offer to run them
Diffstat (limited to 'postfix_wizard/scripts/testlabel.pl')
-rw-r--r-- | postfix_wizard/scripts/testlabel.pl | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/postfix_wizard/scripts/testlabel.pl b/postfix_wizard/scripts/testlabel.pl deleted file mode 100644 index c61d3cb0..00000000 --- a/postfix_wizard/scripts/testlabel.pl +++ /dev/null @@ -1,15 +0,0 @@ -$toto = "tutu"; -$tata = "titi"; - -$file = "/home/logarno/toto"; -open(CANONICAL, "< $file"); -while (<CANONICAL>) { - if (/\@$toto\s*\@$tata/){ - goto NOUPDATE; - } -} -close(CANONICAL); -open(CANONICAL, ">> $file"); -print CANONICAL "\n\@$toto \@$tata"; - NOUPDATE: - close(CANONICAL); |