summaryrefslogtreecommitdiffstats
path: root/os-plugins/slxos-plugin
diff options
context:
space:
mode:
Diffstat (limited to 'os-plugins/slxos-plugin')
-rwxr-xr-xos-plugins/slxos-plugin10
1 files changed, 10 insertions, 0 deletions
diff --git a/os-plugins/slxos-plugin b/os-plugins/slxos-plugin
index eb350320..182a3b33 100755
--- a/os-plugins/slxos-plugin
+++ b/os-plugins/slxos-plugin
@@ -132,6 +132,9 @@ if ($action =~ m[^list-at]i) {
}
my $vendorOSName = shift @ARGV;
+ # for convenience, we alias default to <<<default>>>
+ $vendorOSName = '<<<default>>>' if $vendorOSName eq 'default';
+
# we chdir into the script's folder such that all relative paths have
# a known starting point:
chdir($FindBin::RealBin)
@@ -194,6 +197,9 @@ if ($action =~ m[^list-at]i) {
my $vendorOSName = shift @ARGV;
my $pluginAttrs = parsePluginAttrs(1);
+ # for convenience, we alias default to <<<default>>>
+ $vendorOSName = '<<<default>>>' if $vendorOSName eq 'default';
+
# we chdir into the script's folder such that all relative paths have
# a known starting point:
chdir($FindBin::RealBin)
@@ -230,6 +236,10 @@ if ($action =~ m[^list-at]i) {
pod2usage(2);
}
my $vendorOSName = shift @ARGV;
+
+ # for convenience, we alias default to <<<default>>>
+ $vendorOSName = '<<<default>>>' if $vendorOSName eq 'default';
+
my $pluginAttrs = parsePluginAttrs(0);
# we chdir into the script's folder such that all relative paths have