1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00

sick ascii art yo

This commit is contained in:
Kyle Spearrin 2017-08-11 15:05:50 -04:00
parent e822e66a79
commit 02bb037e38
2 changed files with 38 additions and 2 deletions

View File

@ -2,11 +2,28 @@ param (
[string]$outputDir = "c:/bitwarden"
)
$year = (Get-Date).year
Write-Host @'
_ _ _ _
| |__ (_) |___ ____ _ _ __ __| | ___ _ __
| '_ \| | __\ \ /\ / / _` | '__/ _` |/ _ \ '_ \
| |_) | | |_ \ V V / (_| | | | (_| | __/ | | |
|_.__/|_|\__| \_/\_/ \__,_|_| \__,_|\___|_| |_|
'@
Write-Host "
Open source password management solutions
Copyright 2015-${year}, 8bit Solutions LLC
https://bitwarden.com, https://github.com/bitwarden
"
if(!(Test-Path -Path $outputDir )){
New-Item -ItemType directory -Path $outputDir
}
docker --version
echo ""
[string]$installId = $( Read-Host "(!) Enter your installation id (get it at https://bitwarden.com/host/)" )
[string]$installKey = $( Read-Host "(!) Enter your installation key" )

View File

@ -1,10 +1,29 @@
#!/usr/bin/env bash
set -e
OUTPUT_DIR=/etc/bitwarden
mkdir -p $OUTPUT_DIR
YEAR=$(date +'%Y')
cat << "EOF"
_ _ _ _
| |__ (_) |___ ____ _ _ __ __| | ___ _ __
| '_ \| | __\ \ /\ / / _` | '__/ _` |/ _ \ '_ \
| |_) | | |_ \ V V / (_| | | | (_| | __/ | | |
|_.__/|_|\__| \_/\_/ \__,_|_| \__,_|\___|_| |_|
EOF
cat << EOF
Open source password management solutions
Copyright 2015-$YEAR, 8bit Solutions LLC
https://bitwarden.com, https://github.com/bitwarden
EOF
docker --version
echo ""
OUTPUT_DIR=/etc/bitwarden
mkdir -p $OUTPUT_DIR
echo "(!) Enter your installation id (get it at https://bitwarden.com/host/): "
read INSTALL_ID