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 5050
5151 idempotent_apply ( pp )
5252
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} )
5455 [
5556 %r{Alias name: leaf cert} ,
5657 %r{Entry type: (keyEntry|PrivateKeyEntry)} ,
Original file line number Diff line number Diff line change @@ -195,6 +195,8 @@ class { 'java': }
195195 @resource_path = "['C:/Program Files/Java/jdk1.#{ java_major } .0_#{ java_minor } /bin/']"
196196 when 'ubuntu'
197197 @ensure_ks = 'present' if os [ :release ] == '20.04'
198+ when 'debian'
199+ @ensure_ks = 'present' if os [ :release ] . match? ( %r{^11} )
198200 end
199201 end
200202end
You can’t perform that action at this time.
0 commit comments