We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97de6f5 commit 43016e5Copy full SHA for 43016e5
manifests/server.pp
@@ -43,6 +43,8 @@
43
Hash $authorized_keys = {},
44
Hash $authorized_keys_defaults = {},
45
) {
46
+ include borgbackup::install
47
+
48
if $user_ensure {
49
user { $borguser:
50
ensure => present,
spec/classes/server_spec.rb
@@ -18,6 +18,10 @@
18
shared_examples 'borgbackup::server shared examples' do
19
it { is_expected.to compile.with_all_deps }
20
21
+ it {
22
+ is_expected.to contain_class('borgbackup::install')
23
+ }
24
25
it {
26
is_expected.to contain_file(params[:backuproot])
27
.with_ensure('directory')
0 commit comments