summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/fileshareset
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-10-14 06:11:14 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-10-14 06:11:14 +0000
commit9b11dbde48302f8742079b0953312aab1b79c3f7 (patch)
tree95cd13c643a8766cfe4994a3be1cbfbffaf7e7fd /perl-install/standalone/fileshareset
parent1f904b16be5d7dae34aeaa8ca2fa5a3c64491ba7 (diff)
downloaddrakx-backup-do-not-use-9b11dbde48302f8742079b0953312aab1b79c3f7.tar
drakx-backup-do-not-use-9b11dbde48302f8742079b0953312aab1b79c3f7.tar.gz
drakx-backup-do-not-use-9b11dbde48302f8742079b0953312aab1b79c3f7.tar.bz2
drakx-backup-do-not-use-9b11dbde48302f8742079b0953312aab1b79c3f7.tar.xz
drakx-backup-do-not-use-9b11dbde48302f8742079b0953312aab1b79c3f7.zip
perl_checker compliance
Diffstat (limited to 'perl-install/standalone/fileshareset')
-rwxr-xr-xperl-install/standalone/fileshareset31
1 files changed, 14 insertions, 17 deletions
diff --git a/perl-install/standalone/fileshareset b/perl-install/standalone/fileshareset
index bfbab3106..346426f62 100755
--- a/perl-install/standalone/fileshareset
+++ b/perl-install/standalone/fileshareset
@@ -123,12 +123,13 @@ sub uniq { my %l; $l{$_} = 1 foreach @_; grep { delete $l{$_} } @_ }
################################################################################
package authorisation;
+my $F_lock;
sub read_conf {
my ($exclusive_lock) = @_;
- open F_lock, $authorisation_file; # don't care if it's missing
- flock(F_lock, $exclusive_lock ? 2 : 1) or die "can't lock";
+ open $F_lock, $authorisation_file; # don't care if it's missing
+ flock($F_lock, $exclusive_lock ? 2 : 1) or die "can't lock";
my %conf;
- foreach (<F_lock>) {
+ foreach (<$F_lock>) {
s/#.*//; # remove comments
s/^\s+//;
s/\s+$//;
@@ -136,7 +137,7 @@ sub read_conf {
my ($cmd, $value) = split('=', $_, 2);
$conf{$cmd} = $value || warn qq(suspicious line "$_" in $authorisation_file\n);
}
- # no close F_lock, keep it locked
+ # no close $F_lock, keep it locked
\%conf
}
@@ -191,12 +192,11 @@ BEGIN { @ISA = 'exports' }
sub read() {
my $file = $conf_file;
- local *F;
- open F, $file or return [];
+ open(my $F, $file) or return [];
my ($prev_raw, $prev_line, @l);
my $line_nb = 0;
- foreach my $raw (<F>) {
+ foreach my $raw (<$F>) {
$line_nb++;
local $_ = $raw;
$raw .= "\n" if !/\n/;
@@ -248,9 +248,8 @@ sub write {
$_->{raw} = sprintf("%s %s\n", $mntpoint, $_->{options});
}
}
- local *F;
- open F, ">$conf_file" or die "can't write $conf_file";
- print F $_->{raw} foreach @$nfs_exports;
+ open(my $F, ">$conf_file") or die "can't write $conf_file";
+ print $F $_->{raw} foreach @$nfs_exports;
}
sub update_server() {
@@ -274,11 +273,10 @@ BEGIN { @ISA = 'exports' }
sub read() {
my ($s, @l);
- local *F;
- open F, $conf_file;
+ open(my $F, $conf_file);
local $_;
- while (<F>) {
- if (/^\s*\[.*\]/ || eof F) {
+ while (<$F>) {
+ if (/^\s*\[.*\]/ || eof $F) {
#- first line in the category
my ($label) = $s =~ /^\s*\[(.*)\]/;
my ($mntpoint) = $s =~ /^\s*path\s*=\s*(.*)/m;
@@ -306,9 +304,8 @@ sub write {
EOF
}
}
- local *F;
- open F, ">$conf_file" or die "can't write $conf_file";
- print F $_->{raw} foreach @$smb_exports;
+ open(my $F, ">$conf_file") or die "can't write $conf_file";
+ print $F $_->{raw} foreach @$smb_exports;
}
sub add {