diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-12-02 20:41:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-12-02 20:41:44 +0000 |
commit | 9519d51eb29b0a5881bc859e1c2b9b3b3a8abfa6 (patch) | |
tree | 61aeae2581a101186add4569667ddac27876bd0e /perl-install/install_steps.pm | |
parent | 5ea5e381f9840d127fe444d8eecf34be4c45d0e6 (diff) | |
download | drakx-9519d51eb29b0a5881bc859e1c2b9b3b3a8abfa6.tar drakx-9519d51eb29b0a5881bc859e1c2b9b3b3a8abfa6.tar.gz drakx-9519d51eb29b0a5881bc859e1c2b9b3b3a8abfa6.tar.bz2 drakx-9519d51eb29b0a5881bc859e1c2b9b3b3a8abfa6.tar.xz drakx-9519d51eb29b0a5881bc859e1c2b9b3b3a8abfa6.zip |
use output_with_perm()
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 0892b39ab..a9a613f0a 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -634,8 +634,7 @@ sub configureNetwork { $o->{netcnx}{type} = 'lan'; foreach ("up", "down") { my $f = "$o->{prefix}/etc/sysconfig/network-scripts/net_cnx_$_"; - output $f, "\nif$_ eth0\n"; - chmod 0755, $f; + output_with_perm($f, 0755, "\nif$_ eth0\n"); } output "$o->{prefix}/etc/sysconfig/network-scripts/net_cnx_pg", "\n/usr/sbin/drakconnet\n"; } |