summaryrefslogtreecommitdiffstats
path: root/modules/c_toolchain
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-10-09 01:02:24 -0400
committerJesse Luehrs <doy@tozt.net>2018-10-09 01:02:24 -0400
commitceb3dd07f0192ac06b8e62758e782ce3693905ab (patch)
tree2242420592b37850f43c7736c6e818eadf691558 /modules/c_toolchain
parent8caa7b4cae5f66e15715ae470170dc4b73e2347e (diff)
downloadpuppet-tozt-ceb3dd07f0192ac06b8e62758e782ce3693905ab.tar.gz
puppet-tozt-ceb3dd07f0192ac06b8e62758e782ce3693905ab.zip
split up "other_packages"
Diffstat (limited to 'modules/c_toolchain')
-rw-r--r--modules/c_toolchain/manifests/init.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/c_toolchain/manifests/init.pp b/modules/c_toolchain/manifests/init.pp
new file mode 100644
index 0000000..2f9a364
--- /dev/null
+++ b/modules/c_toolchain/manifests/init.pp
@@ -0,0 +1,12 @@
+class c_toolchain {
+ package {
+ [
+ "autoconf",
+ "automake",
+ "gcc",
+ "make",
+ "pkgconf",
+ ]:
+ ensure => installed,
+ }
+}