-
-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: allow client_specific_config with extca_enabled in OpenVPN
Removed the dependency on openvpn::client when extca_enabled is set to true, enabling the use of client_specific_config without errors. This change improves compatibility with external CA configurations.
- Loading branch information
rsguera
committed
Feb 5, 2025
1 parent
8cbff15
commit 1d97a19
Showing
2 changed files
with
0 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,18 +6,13 @@ | |
on_supported_os.each do |os, facts| | ||
context "on #{os}" do | ||
let(:pre_condition) do | ||
[ | ||
'openvpn::server { "test_server": | ||
Check failure on line 9 in spec/defines/openvpn_client_specific_config_spec.rb
|
||
country => "CO", | ||
province => "ST", | ||
city => "Some City", | ||
organization => "example.org", | ||
email => "[email protected]" | ||
}', | ||
'openvpn::client { "test_client": | ||
server => "test_server" | ||
}' | ||
].join | ||
end | ||
let(:facts) do | ||
facts | ||
|