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