aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-03-31 13:04:23 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-03-31 13:04:23 -0300
commit9af75196ad145712db8301d01fc31802ab248ca1 (patch)
tree237638abeacd18bfaae005811c7b22a42ee98451
parentb61cbb982d11cf5b82801c0bcc1e146ff4205d99 (diff)
downloadpuppet-nodo-9af75196ad145712db8301d01fc31802ab248ca1.tar.gz
puppet-nodo-9af75196ad145712db8301d01fc31802ab248ca1.tar.bz2
Put more software into not-in-use state
-rw-r--r--manifests/utils/development/ide.pp38
-rw-r--r--manifests/utils/office.pp2
2 files changed, 19 insertions, 21 deletions
diff --git a/manifests/utils/development/ide.pp b/manifests/utils/development/ide.pp
index 9d60383..9dc3faa 100644
--- a/manifests/utils/development/ide.pp
+++ b/manifests/utils/development/ide.pp
@@ -1,26 +1,24 @@
class nodo::utils::development::ide {
- package { [ 'exuberant-ctags', 'mr', 'doxygen', 'agave', 'hexedit', 'ack-grep', 'markdown', 'python-sphinx' ]:
+ # In use
+ package { [ 'mr', 'hexedit', 'ack-grep', 'markdown', 'python-sphinx' ]:
ensure => installed,
}
- # To be considered
- #package { [ 'ticgit', 'ticgitweb' ]:
- # ensure => present,
- #}
-
- # Old packages
- package { [ 'ditz', 'pnopaste-cli' ]:
- ensure => $::lsbdistcodename ? {
- 'wheezy' => present,
- default => absent,
- },
- }
-
- # Jessie onwards
- package { [ 'ttyrec', 'bugs-everywhere', 'silversearcher-ag', 'vit' ]:
- ensure => $::lsbdistcodename ? {
- 'wheezy' => absent,
- default => present,
- },
+ # Not in use
+ package { [ 'ttyrec',
+ 'bugs-everywhere',
+ 'silversearcher-ag',
+ 'ticgit',
+ 'ticgitweb',
+ 'ditz',
+ 'pnopaste-cli',
+ 'exuberant-ctags',
+ 'doxygen',
+ 'agave',
+ 'hexedit',
+ 'ack-grep',
+ 'markdown',
+ 'python-sphinx' ]:
+ ensure => absent,
}
}
diff --git a/manifests/utils/office.pp b/manifests/utils/office.pp
index a2928c2..60e1cf2 100644
--- a/manifests/utils/office.pp
+++ b/manifests/utils/office.pp
@@ -22,7 +22,7 @@ class nodo::utils::office {
}
# Not in use
- package { [ 'kalarm', 'gnumeric', 'jekyll', 'taskwarrior', 'hledger', 'dia', 'calibre' ]:
+ package { [ 'kalarm', 'gnumeric', 'jekyll', 'taskwarrior', 'vit', 'hledger', 'dia', 'calibre' ]:
ensure => absent,
}
}