summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorOliver Tappe2007-07-01 22:28:50 +0200
committerOliver Tappe2007-07-01 22:28:50 +0200
commit6974fa8b0419bbd0711f79c8b78e07a9543810dd (patch)
tree25141f0f4d20ca8fdb1c845edf5b9ce4b24a6e98 /bin
parentTried to add Ubuntu 7.04 to the list of cloneable systems. (diff)
downloadcore-6974fa8b0419bbd0711f79c8b78e07a9543810dd.tar.gz
core-6974fa8b0419bbd0711f79c8b78e07a9543810dd.tar.xz
core-6974fa8b0419bbd0711f79c8b78e07a9543810dd.zip
* activated 'use warnings' to all modules and adjusted all occurences of
'use of uninitialized values', a couple of which might still show up * adjusted all code with respect to passing perlcritic level 4 and 5 git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1207 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'bin')
-rwxr-xr-xbin/slxldd18
-rwxr-xr-xbin/slxsettings21
2 files changed, 22 insertions, 17 deletions
diff --git a/bin/slxldd b/bin/slxldd
index a41fc81c..d2553253 100755
--- a/bin/slxldd
+++ b/bin/slxldd
@@ -14,6 +14,7 @@
# - OpenSLX-rewrite of ldd that works on multiple architectures.
# -----------------------------------------------------------------------------
use strict;
+use warnings;
my $abstract = q[
slxldd
@@ -25,14 +26,14 @@ slxldd
required by a binary of the x86_64 target system.
];
-use File::Glob ':globally';
-use Getopt::Long;
-use Pod::Usage;
-
# add the lib-folder to perl's search path for modules:
use FindBin;
use lib "$FindBin::RealBin/../lib";
+use File::Glob ':globally';
+use Getopt::Long;
+use Pod::Usage;
+
use OpenSLX::Basics;
my (
@@ -104,8 +105,10 @@ sub fetchLoaderConfigFile
{
my $ldConfFile = shift;
- open(LDCONF, "< $ldConfFile");
- while (<LDCONF>) {
+ my $ldconfFH;
+ open($ldconfFH, '<', $ldConfFile)
+ or die(_tr("unable to open file '%s' (%s)", $ldConfFile, $!));
+ while (<$ldconfFH>) {
chomp;
if (/^\s*include\s+(.+?)\s*$/i) {
foreach my $incFile (<$rootPath$1>) {
@@ -119,7 +122,8 @@ sub fetchLoaderConfigFile
push @libFolders, "$rootPath$_";
}
}
- close LDCONF;
+ close $ldconfFH
+ or die(_tr("unable to close file '%s' (%s)", $ldConfFile, $!));
}
sub fetchLoaderConfig
diff --git a/bin/slxsettings b/bin/slxsettings
index e753ad99..278cb2c2 100755
--- a/bin/slxsettings
+++ b/bin/slxsettings
@@ -14,6 +14,7 @@
# - OpenSLX-script to show & change local settings
# -----------------------------------------------------------------------------
use strict;
+use warnings;
my $abstract = q[
slxsettings
@@ -28,9 +29,6 @@ slxsettings
Please use the --man option in order to read the full manual.
];
-use Getopt::Long qw(:config pass_through);
-use Pod::Usage;
-
# add the lib-folder and the folder this script lives in to perl's search
# path for modules:
use FindBin;
@@ -38,9 +36,13 @@ use lib "$FindBin::RealBin/../lib";
use lib "$FindBin::RealBin";
# development path to config-db stuff
+use Getopt::Long qw(:config pass_through);
+use Pod::Usage;
+
use OpenSLX::Basics;
use OpenSLX::Utils;
+
my ($quiet, @reset, $helpReq, $manReq, $versionReq,);
GetOptions(
@@ -111,11 +113,8 @@ foreach my $key (@reset) {
# ... and write local settings file if necessary
if (keys %changed) {
- my $f = "$openslxConfig{'config-path'}/settings";
- open(SETTINGS, "> $f")
- or die _tr("Unable to write local settings file '%s' (%s)", $f, $!);
- print SETTINGS $settings;
- close(SETTINGS);
+ my $fileName = "$openslxConfig{'config-path'}/settings";
+ spitFile($fileName, $settings);
openslxInit();
@@ -135,13 +134,15 @@ if (!keys %changed) {
print $text;
my @baseSettings = grep { exists $cmdlineConfig{$_} } keys %openslxConfig;
foreach my $key (sort @baseSettings) {
- print qq[\t--$key='$openslxConfig{$key}'\n];
+ my $val = $openslxConfig{$key} || '';
+ print qq[\t--$key='$val'\n];
}
print _tr("extended settings:\n");
my @extSettings = grep { !exists $cmdlineConfig{$_} } keys %openslxConfig;
foreach my $key (sort @extSettings) {
next if $key =~ m[^(base-path|config-path)$];
- print qq[\t$key='$openslxConfig{$key}'\n];
+ my $val = $openslxConfig{$key} || '';
+ print qq[\t$key='$val'\n];
}
}