]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Remove duplicate definitions
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 31 Mar 2016 16:06:22 +0000 (13:06 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 31 Mar 2016 16:06:22 +0000 (13:06 -0300)
manifests/utils/development/ide.pp

index 9dc3faad8c28ea3c1949983a359ba844864809eb..7a83d7fa3b164ad711ef25bcfd088dd1fc8d61ee 100644 (file)
@@ -1,11 +1,18 @@
 class nodo::utils::development::ide {
   # In use
-  package { [ 'mr', 'hexedit', 'ack-grep', 'markdown', 'python-sphinx' ]:
+  package { [
+              'mr',
+              'hexedit',
+              'ack-grep',
+              'markdown',
+              'python-sphinx',
+            ]:
     ensure => installed,
   }
 
   # Not in use
-  package { [ 'ttyrec',
+  package { [
+              'ttyrec',
               'bugs-everywhere',
               'silversearcher-ag',
               'ticgit',
@@ -15,10 +22,7 @@ class nodo::utils::development::ide {
               'exuberant-ctags',
               'doxygen',
               'agave',
-              'hexedit',
-              'ack-grep',
-              'markdown',
-              'python-sphinx' ]:
+            ]:
     ensure => absent,
   }
 }