2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: Validate-OpenSSL.ps1
|
|
|
|
|
## Desc: Validate openssl
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
if (Get-Command -Name 'openssl')
|
|
|
|
|
{
|
2020-06-02 20:07:12 +03:00
|
|
|
Write-Host 'openssl on path'
|
2019-12-13 09:48:00 -05:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Write-Host 'openssl is not on path'
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
|
|
|
|
|