]> xn--ix-yja.es Git - alex.git/commitdiff
Install which on EL
authoralex <alex@pdp7.net>
Thu, 2 Feb 2023 19:27:56 +0000 (20:27 +0100)
committeralex <alex@pdp7.net>
Thu, 2 Feb 2023 19:28:48 +0000 (20:28 +0100)
personal_infra/puppet/modules/basic_software/manifests/init.pp

index eccf9fa7753ef0cdf81a12085436e87002eb8c46..7ea56099acaa75f0331e3dd958c72f1971a67ff4 100644 (file)
@@ -1,3 +1,7 @@
 class basic_software {
   package {'less':}
+
+  if($facts['os']['family'] == 'RedHat') {
+    package {'which':}
+  }
 }