]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/mailman/recipes/default.rb
Add test for mailman cookbook
[chef.git] / cookbooks / mailman / recipes / default.rb
index 6e53ee8e531a17fb080a287d65fc716944600477..a4d9768ab8451df84109607260552f731451603a 100644 (file)
@@ -33,6 +33,13 @@ template "/etc/mailman/mm_cfg.py" do
   notifies :restart, "service[mailman]"
 end
 
+execute "newlist" do
+  command "newlist -q mailman mailman@example.com mailman"
+  user "root"
+  group "root"
+  not_if { ::File.exist?("/var/lib/mailman/lists/mailman/") }
+end
+
 service "mailman" do
   action [:enable, :start]
   supports :restart => true, :reload => true