aboutsummaryrefslogtreecommitdiffstats
path: root/modules/transifex/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/transifex/manifests/init.pp')
-rw-r--r--modules/transifex/manifests/init.pp17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/transifex/manifests/init.pp b/modules/transifex/manifests/init.pp
new file mode 100644
index 00000000..d2ee620f
--- /dev/null
+++ b/modules/transifex/manifests/init.pp
@@ -0,0 +1,17 @@
+class transifex {
+ package { 'transifex':
+ ensure => installed
+ }
+ package { 'postfix':
+ ensure => installed
+ }
+
+ file { "check_new-blog-post":
+ path => "/etc/transifex/20-engines.conf",
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 755,
+ content => template("transifex/20-engines.conf")
+ }
+}