Lint fixes

This commit is contained in:
Ossi Salmi 2015-05-04 11:03:26 +03:00
parent 96fb1bacbc
commit f70c8572a5
18 changed files with 71 additions and 43 deletions

View file

@ -1,4 +1,3 @@
# Add LSB Core system components
#
class lsb::core {
@ -14,6 +13,9 @@ class lsb::core {
"ubuntu": {
$pkgname = "lsb-core"
}
default: {
fail("lsb::core not supported on ${::operatingsystem}"}
}
}
package { "lsb-core":
@ -42,6 +44,9 @@ class lsb::desktop {
"ubuntu": {
$pkgname = "lsb-desktop"
}
default: {
fail("lsb::desktop not supported on ${::operatingsystem}"}
}
}
package { "lsb-desktop":
@ -50,4 +55,3 @@ class lsb::desktop {
}
}