From 97814533cf8e70700cac5d8d546e6e5b1d058efd Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Thu, 9 Dec 2010 12:34:23 +0000 Subject: add a mailling list type --- modules/sympa/manifests/init.pp | 16 ++++++++++++++++ modules/sympa/templates/list.xml | 15 +++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 modules/sympa/templates/list.xml (limited to 'modules/sympa') diff --git a/modules/sympa/manifests/init.pp b/modules/sympa/manifests/init.pp index b4bac2bd..8ad97342 100644 --- a/modules/sympa/manifests/init.pp +++ b/modules/sympa/manifests/init.pp @@ -70,5 +70,21 @@ class sympa { mode => 755, } } + + define list($subject, $profile, $language = 'en') { + + $xml_file = "/etc/sympa/lists_xml/$name.xml" + + file { "$xml_file": + owner => root, + group => root, + content => template('sympa/list.xml') + } + + exec { "sympa.pl --create_list --robot=ml.$domain --input_file=$xml_file": + refreshonly => true, + subscribe => File["$xml_file"] + } + } } diff --git a/modules/sympa/templates/list.xml b/modules/sympa/templates/list.xml new file mode 100644 index 00000000..b115b6d6 --- /dev/null +++ b/modules/sympa/templates/list.xml @@ -0,0 +1,15 @@ + + + <%= name %> + <%= profile%> + <%= subject %> + + open + <%= language %> + + + misc@zarb.org + -- cgit v1.2.1