diff --git a/modules/openstack_project/manifests/etherpad.pp b/modules/openstack_project/manifests/etherpad.pp index e4d99c32f2..db2991343c 100644 --- a/modules/openstack_project/manifests/etherpad.pp +++ b/modules/openstack_project/manifests/etherpad.pp @@ -11,7 +11,9 @@ class openstack_project::etherpad ( } include etherpad_lite - include etherpad_lite::backup + mysql_backup::backup { 'etherpad-lite': + require => Class['etherpad_lite'], + } class { 'etherpad_lite::apache': ssl_cert_file => '/etc/ssl/certs/etherpad.openstack.org.pem', diff --git a/modules/openstack_project/manifests/etherpad_dev.pp b/modules/openstack_project/manifests/etherpad_dev.pp index 521dda6fb0..af1273e5f1 100644 --- a/modules/openstack_project/manifests/etherpad_dev.pp +++ b/modules/openstack_project/manifests/etherpad_dev.pp @@ -19,7 +19,9 @@ class openstack_project::etherpad_dev ( ep_headings => true } - include etherpad_lite::backup + mysql_backup::backup { 'etherpad-lite': + require => Class['etherpad_lite'], + } class { 'etherpad_lite::apache': ssl_cert_file => '/etc/ssl/certs/ssl-cert-snakeoil.pem',