summaryrefslogtreecommitdiffstats
path: root/modules/conf/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/conf/manifests/init.pp')
-rw-r--r--modules/conf/manifests/init.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/conf/manifests/init.pp b/modules/conf/manifests/init.pp
new file mode 100644
index 0000000..36e5f22
--- /dev/null
+++ b/modules/conf/manifests/init.pp
@@ -0,0 +1,15 @@
+class conf {
+ include c_toolchain
+ include cron
+ include git
+
+ package {
+ [
+ "cmake",
+ "fortune-mod",
+ "less",
+ "vim",
+ ]:
+ ensure => installed,
+ }
+}