aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/interface.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-09-23 16:29:26 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-09-23 16:29:26 -0300
commit4a880ad141c8deefb41549e5e79c868303e1c296 (patch)
tree259be8415b54beb82bcafa6fed2114de49a627b4 /manifests/utils/interface.pp
parent50d24f812a1ea34e190632cfef4b217490d7522d (diff)
downloadpuppet-nodo-4a880ad141c8deefb41549e5e79c868303e1c296.tar.gz
puppet-nodo-4a880ad141c8deefb41549e5e79c868303e1c296.tar.bz2
Coding style for utilities
Diffstat (limited to 'manifests/utils/interface.pp')
-rw-r--r--manifests/utils/interface.pp55
1 files changed, 45 insertions, 10 deletions
diff --git a/manifests/utils/interface.pp b/manifests/utils/interface.pp
index d5035c2..4367627 100644
--- a/manifests/utils/interface.pp
+++ b/manifests/utils/interface.pp
@@ -1,19 +1,47 @@
class nodo::utils::interface inherits nodo::utils::interface::console {
# Interface
- package { [ 'awesome', 'eterm', 'weather-util', 'gnome-terminal', 'conky',
- 'xterm', 'xscreensaver', 'thunar', 'x11-apps', 'conky-all',
- 'gtk-theme-switch', 'gtk-smooth-themes', 'rxvt', 'lxappearance', 'xdotool',
- 'xtitle', 'xclip', 'pcmanfm', 'awesome-extra', 'numlockx',
- 'metar', 'wmctrl', 'xsel', 'xinput', 'i3' ]:
+ package { [
+ 'awesome',
+ 'eterm',
+ 'weather-util',
+ 'gnome-terminal',
+ 'conky',
+ 'xterm',
+ 'xscreensaver',
+ 'thunar',
+ 'x11-apps',
+ 'conky-all',
+ 'gtk-theme-switch',
+ 'gtk-smooth-themes',
+ 'rxvt',
+ 'lxappearance',
+ 'xdotool',
+ 'xtitle',
+ 'xclip',
+ 'pcmanfm',
+ 'awesome-extra',
+ 'numlockx',
+ 'metar',
+ 'wmctrl',
+ 'xsel',
+ 'xinput',
+ 'i3',
+ ]:
ensure => installed,
}
# Fonts
- package { [ 'xfonts-terminus', 'ttf-bitstream-vera', 'fonts-inconsolata' ]:
+ package { [
+ 'xfonts-terminus',
+ 'ttf-bitstream-vera',
+ 'fonts-inconsolata',
+ ]:
ensure => installed,
}
- package { 'rxvt-unicode':
+ package { [
+ 'rxvt-unicode',
+ ]:
ensure => present,
# We need a workaround for this:
# https://bbs.archlinux.org/viewtopic.php?id=50647
@@ -24,7 +52,9 @@ class nodo::utils::interface inherits nodo::utils::interface::console {
}
}
- package { "terminology":
+ package { [
+ 'terminology',
+ ]:
ensure => $::lsbdistcodename ? {
'wheezy' => absent,
default => present,
@@ -32,12 +62,17 @@ class nodo::utils::interface inherits nodo::utils::interface::console {
}
# Old stuff
- package { [ 'conkyforecast', 'fluxbox' ]:
+ package { [
+ 'conkyforecast',
+ 'fluxbox',
+ ]:
ensure => absent,
}
# To be considered
- #package { 'needrestart-session':
+ #package {
+ # 'needrestart-session',
+ #]:
# ensure => present,
#}
}