diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-08-16 23:47:29 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-08-16 23:47:29 -0300 |
commit | e01825391127e1342fe8a3c5c2f696e9358ae6e1 (patch) | |
tree | 5cd85948c5a13fbb477482db12a6c84da6c6234c | |
parent | b170636e50406a12522cfa1f0b1360fbd570bc99 (diff) | |
download | puppet-nodo-e01825391127e1342fe8a3c5c2f696e9358ae6e1.tar.gz puppet-nodo-e01825391127e1342fe8a3c5c2f696e9358ae6e1.tar.bz2 |
Moving some console apps to nodo::utils::interface::console
-rw-r--r-- | manifests/utils/interface.pp | 11 | ||||
-rw-r--r-- | manifests/utils/interface/console.pp | 5 |
2 files changed, 10 insertions, 6 deletions
diff --git a/manifests/utils/interface.pp b/manifests/utils/interface.pp index 1b49df5..52b7cea 100644 --- a/manifests/utils/interface.pp +++ b/manifests/utils/interface.pp @@ -1,10 +1,9 @@ -class nodo::utils::interface { +class nodo::utils::interface inherits nodo::utils::interface::console { # Interface - package { [ 'awesome', 'eterm', 'weather-util', 'gnome-terminal', 'conky', - 'xterm', 'tmux', 'xscreensaver', 'thunar', - 'mc', 'gtk-theme-switch', 'gtk-smooth-themes', 'rxvt', 'lxappearance', - 'xtitle', 'xclip', 'pcmanfm', 'awesome-extra', 'numlockx', - 'x11-apps' ]: + package { [ 'awesome', 'eterm', 'weather-util', 'gnome-terminal', 'conky', + 'xterm', 'xscreensaver', 'thunar', 'x11-apps', + 'gtk-theme-switch', 'gtk-smooth-themes', 'rxvt', 'lxappearance', + 'xtitle', 'xclip', 'pcmanfm', 'awesome-extra', 'numlockx' ]: ensure => installed, } diff --git a/manifests/utils/interface/console.pp b/manifests/utils/interface/console.pp new file mode 100644 index 0000000..f5b0cd8 --- /dev/null +++ b/manifests/utils/interface/console.pp @@ -0,0 +1,5 @@ +class nodo::utils::interface::console { + package { [ 'mc', 'tmux' ]: + ensure => installed, + } +} |