From 7f8e6d9bce9db57d54b8c00165d38b023b600642 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Tue, 13 Aug 2013 17:48:16 +0000 Subject: [PATCH] Sort mailing lists in alpha order * modules/openstack_project/manifests/lists.pp: Sorted for ease of management and to reduce parallel change merge conflicts in the future. Change-Id: I12240060e30114bd0a455768f498681b7a2c232c --- modules/openstack_project/manifests/lists.pp | 72 ++++++++++---------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/modules/openstack_project/manifests/lists.pp b/modules/openstack_project/manifests/lists.pp index ee1ca904f7..8dddca359b 100644 --- a/modules/openstack_project/manifests/lists.pp +++ b/modules/openstack_project/manifests/lists.pp @@ -30,24 +30,6 @@ class openstack_project::lists( User::Virtual::Localuser['smaffulli'], ) - maillist { 'openstack-it': - ensure => present, - admin => 'stefano@openstack.org', - password => $listpassword, - description => 'Discussioni su OpenStack in italiano', - webserver => $listdomain, - mailserver => $listdomain, - } - - maillist { 'openstack-vi': - ensure => present, - admin => 'hang.tran@dtt.vn', - password => $listpassword, - description => 'Discussions in Vietnamese - please add Vietnamese translation here', - webserver => $listdomain, - mailserver => $listdomain, - } - maillist { 'openstack-es': ensure => present, admin => 'flavio@redhat.com', @@ -57,24 +39,6 @@ class openstack_project::lists( mailserver => $listdomain, } - maillist { 'openstack-i18n': - ensure => present, - admin => 'guoyingc@cn.ibm.com', - password => $listpassword, - description => 'List of the OpenStack Internationalization team.', - webserver => $listdomain, - mailserver => $listdomain, - } - - maillist { 'openstack-travel-committee': - ensure => present, - admin => 'communitymngr@openstack.org', - password => $listpassword, - description => 'Private discussions for the OpenStack Travel Program Committee for Hong Kong Summit 2013.', - webserver => $listdomain, - mailserver => $listdomain, - } - maillist { 'openstack-fr': ensure => present, admin => 'erwan.gallen@cloudwatt.com', @@ -84,4 +48,40 @@ class openstack_project::lists( mailserver => $listdomain, } + maillist { 'openstack-i18n': + ensure => present, + admin => 'guoyingc@cn.ibm.com', + password => $listpassword, + description => 'List of the OpenStack Internationalization team.', + webserver => $listdomain, + mailserver => $listdomain, + } + + maillist { 'openstack-it': + ensure => present, + admin => 'stefano@openstack.org', + password => $listpassword, + description => 'Discussioni su OpenStack in italiano', + webserver => $listdomain, + mailserver => $listdomain, + } + + maillist { 'openstack-travel-committee': + ensure => present, + admin => 'communitymngr@openstack.org', + password => $listpassword, + description => 'Private discussions for the OpenStack Travel Program Committee for Hong Kong Summit 2013.', + webserver => $listdomain, + mailserver => $listdomain, + } + + maillist { 'openstack-vi': + ensure => present, + admin => 'hang.tran@dtt.vn', + password => $listpassword, + description => 'Discussions in Vietnamese - please add Vietnamese translation here', + webserver => $listdomain, + mailserver => $listdomain, + } + }