mirror of
https://github.com/bitwarden/server
synced 2026-01-05 18:13:31 +00:00
add some color to scripts
This commit is contained in:
@@ -9,18 +9,24 @@ if(!(Test-Path -Path $outputDir )){
|
||||
}
|
||||
|
||||
[string]$letsEncrypt = "n"
|
||||
[string]$domain = $( Read-Host "(!) Enter the domain name for your bitwarden instance (ex. bitwarden.company.com)" )
|
||||
Write-Host "(!) " -f cyan -nonewline
|
||||
[string]$domain = $( Read-Host "Enter the domain name for your bitwarden instance (ex. bitwarden.company.com)" )
|
||||
echo ""
|
||||
|
||||
if($domain -eq "") {
|
||||
$domain = "localhost"
|
||||
}
|
||||
|
||||
if($domain -ne "localhost") {
|
||||
$letsEncrypt = $( Read-Host "(!) Do you want to use Let's Encrypt to generate a free SSL certificate? (y/n)" )
|
||||
Write-Host "(!) " -f cyan -nonewline
|
||||
$letsEncrypt = $( Read-Host "Do you want to use Let's Encrypt to generate a free SSL certificate? (y/n)" )
|
||||
echo ""
|
||||
|
||||
if($letsEncrypt -eq "y") {
|
||||
[string]$email = $( Read-Host "(!) Enter your email address (Let's Encrypt will send you certificate expiration reminders)" )
|
||||
|
||||
Write-Host "(!) " -f cyan -nonewline
|
||||
[string]$email = $( Read-Host "Enter your email address (Let's Encrypt will send you certificate expiration reminders)" )
|
||||
echo ""
|
||||
|
||||
$letsEncryptPath = "${outputDir}/letsencrypt"
|
||||
if(!(Test-Path -Path $letsEncryptPath )){
|
||||
New-Item -ItemType directory -Path $letsEncryptPath | Out-Null
|
||||
@@ -36,4 +42,6 @@ docker pull bitwarden/setup:$coreVersion
|
||||
docker run -it --rm --name setup -v ${outputDir}:/bitwarden bitwarden/setup:$coreVersion `
|
||||
dotnet Setup.dll -install 1 -domain ${domain} -letsencrypt ${letsEncrypt} -os win -corev $coreVersion -webv $webVersion
|
||||
|
||||
echo ""
|
||||
echo "Setup complete"
|
||||
echo ""
|
||||
|
||||
Reference in New Issue
Block a user