diff --git a/metadata.json b/metadata.json index 750c6c5..a483a44 100644 --- a/metadata.json +++ b/metadata.json @@ -56,12 +56,6 @@ "operatingsystemrelease": [ "13" ] - }, - { - "operatingsystem": "Archlinux", - "operatingsystemrelease": [ - "1.0" - ] } ], "requirements": [ diff --git a/spec/acceptance/class_spec.rb b/spec/acceptance/class_spec.rb index 6eaa63d..dccf262 100644 --- a/spec/acceptance/class_spec.rb +++ b/spec/acceptance/class_spec.rb @@ -118,11 +118,13 @@ class { '::nfs': nfs::server::export { '/data_folder': ensure => 'mounted', clients => '*(rw,insecure,async,no_root_squash,no_subtree_check)', + before => Class['nfs::server::service'], } nfs::server::export { '/homeexport': ensure => 'mounted', clients => '*(rw,insecure,async,root_squash,no_subtree_check)', mount => '/srv/home', + before => Class['nfs::server::service'], } PUPPETCODE