File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 50
50
51
51
idempotent_apply ( pp )
52
52
53
- expectations = if os [ :family ] == 'windows' || ( os [ :family ] == 'ubuntu' && os [ :release ] == '20.04' )
53
+ expectations = if os [ :family ] == 'windows' || ( os [ :family ] == 'ubuntu' && os [ :release ] == '20.04' ) ||
54
+ ( os [ :family ] == 'debian' && os [ :release ] =~ %r{^11} )
54
55
[
55
56
%r{Alias name: leaf cert} ,
56
57
%r{Entry type: (keyEntry|PrivateKeyEntry)} ,
Original file line number Diff line number Diff line change @@ -195,6 +195,8 @@ class { 'java': }
195
195
@resource_path = "['C:/Program Files/Java/jdk1.#{ java_major } .0_#{ java_minor } /bin/']"
196
196
when 'ubuntu'
197
197
@ensure_ks = 'present' if os [ :release ] == '20.04'
198
+ when 'debian'
199
+ @ensure_ks = 'present' if os [ :release ] . match? ( %r{^11} )
198
200
end
199
201
end
200
202
end
You can’t perform that action at this time.
0 commit comments