diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-07-29 10:55:31 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-07-29 10:55:31 +0000 |
commit | 48eb74c3d2e93715b0ac483a3e1f638c674ceca0 (patch) | |
tree | 8b8e9786ddd1e6d59ccb27828afca847d2e63a9b /perl-install | |
parent | af7f9c869b7faf1ce0f0aba6d07aeabfcfed2943 (diff) | |
download | drakx-48eb74c3d2e93715b0ac483a3e1f638c674ceca0.tar drakx-48eb74c3d2e93715b0ac483a3e1f638c674ceca0.tar.gz drakx-48eb74c3d2e93715b0ac483a3e1f638c674ceca0.tar.bz2 drakx-48eb74c3d2e93715b0ac483a3e1f638c674ceca0.tar.xz drakx-48eb74c3d2e93715b0ac483a3e1f638c674ceca0.zip |
- use $::prefix for reading/writing (it was missing for writing)
- use output_p so that /etc/samba directory is created if needed
(fix bug reported by David Eastcott)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs.pm | 2 | ||||
-rw-r--r-- | perl-install/network/smb.pm | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index a8789c6f3..00c3f0e65 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -91,7 +91,7 @@ sub read_fstab { #- the other way is done in fstab_to_string my ($options, $unknown) = mount_options_unpack($h); my $file = delete $options->{'credentials='}; - my $credentials = network::smb::read_credentials_raw("$prefix$file"); + my $credentials = network::smb::read_credentials_raw($file); if ($credentials->{username}) { $options->{"$_="} = $credentials->{$_} foreach qw(username password domain); mount_options_pack($h, $options, $unknown); diff --git a/perl-install/network/smb.pm b/perl-install/network/smb.pm index d212f5122..abf742800 100644 --- a/perl-install/network/smb.pm +++ b/perl-install/network/smb.pm @@ -131,14 +131,14 @@ sub remove_bad_credentials { sub save_credentials { my ($credentials) = @_; my $file = $credentials->{file}; - output($file, map { "$_ = $credentials->{$_}\n" } qw(username domain password)); - chmod(0640, $file); + output_p($file, map { "$_ = $credentials->{$_}\n" } qw(username domain password)); + chmod(0640, "$::prefix$file"); } sub read_credentials_raw { my ($file) = @_; - my %h = map { /(.*?)\s*=\s*(.*)/ } cat_($file); + my %h = map { /(.*?)\s*=\s*(.*)/ } cat_("$::prefix$file"); \%h; } |