diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-23 20:26:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-23 20:26:28 +0000 |
commit | 373d8b2e3012afabb301b4ac8df49da2279bd401 (patch) | |
tree | 25c5411b39c6cffb38b986d3efa7773dbbd6a8e9 | |
parent | 53eb3667f111a8db34edfd1fc7a6c65c4b9ccea3 (diff) | |
download | drakx-backup-do-not-use-373d8b2e3012afabb301b4ac8df49da2279bd401.tar drakx-backup-do-not-use-373d8b2e3012afabb301b4ac8df49da2279bd401.tar.gz drakx-backup-do-not-use-373d8b2e3012afabb301b4ac8df49da2279bd401.tar.bz2 drakx-backup-do-not-use-373d8b2e3012afabb301b4ac8df49da2279bd401.tar.xz drakx-backup-do-not-use-373d8b2e3012afabb301b4ac8df49da2279bd401.zip |
use output_p() instead of output() for /etc/ntp/step-tickers
-rw-r--r-- | perl-install/timezone.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/timezone.pm b/perl-install/timezone.pm index 7fb5303d3..df8da49b2 100644 --- a/perl-install/timezone.pm +++ b/perl-install/timezone.pm @@ -35,7 +35,7 @@ sub ntp_server { $added = 1; } } $f; - output("$prefix/etc/ntp/step-tickers", "$server\n"); + output_p("$prefix/etc/ntp/step-tickers", "$server\n"); } else { $server = find { $_ ne '127.127.1.0' } map { if_(/^\s*server\s+(\S*)/, $1) } cat_($f); } |