Skip to content

Commit

Permalink
(gh-495) Implements Pre-Logon Access Provider for OpenVPN
Browse files Browse the repository at this point in the history
Add support for the Pre-Logon Access Provider parameter on the installer.

Merge pull request #496 from anicoa/openvpn-plap

Closes gh-495
  • Loading branch information
dgalbraith committed Oct 1, 2023
2 parents 0accda1 + 475a446 commit ce053e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions automatic/openvpn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ following package parameter can be set:
* `/DcoDriver` - install the OpenVPN Data Channel Offload driver
* `/TapDriver` - install the TAP-Windows driver (NDIS6)
* `/WintunDriver` - install the layer 3 TUN driver for Windows
* `/PLAP` - install Pre-Logon Access-Provider
* `/Documentation` - install the OpenVPN documentation
* `/OpenSSL` - install OpelSSL utilities for generating public/private key pairs
* `/SampleConfig` - install OpenVPN client/server configuration examples
Expand Down
1 change: 1 addition & 0 deletions automatic/openvpn/openvpn.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ following package parameter can be set:
* `/DcoDriver` - install the OpenVPN Data Channel Offload driver
* `/TapDriver` - install the TAP-Windows driver (NDIS6)
* `/WintunDriver` - install the layer 3 TUN driver for Windows
* `/PLAP` - install Pre-Logon Access-Provider
* `/Documentation` - install the OpenVPN documentation
* `/OpenSSL` - install OpelSSL utilities for generating public/private key pairs
* `/SampleConfig` - install OpenVPN client/server configuration examples
Expand Down
4 changes: 4 additions & 0 deletions automatic/openvpn/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ if ($pp.count -gt 0) {
Write-Verbose('The layer 3 TUN driver will be installed')
$local += 'Drivers.Wintun'
}
'PLAP' {
Write-Verbose('Pre-Logon Access-Provider will be activated')
$local += 'OpenVPN.PLAP'
}
'Documentation' {
Write-Verbose('OpenVPN documentation will be installed')
$local += 'OpenVPN.Documentation'
Expand Down

0 comments on commit ce053e1

Please sign in to comment.