mirror of https://github.com/samply/bridgehead.git
7 lines
308 B
Bash
7 lines
308 B
Bash
#!/bin/bash -e
|
|
source lib/functions.sh
|
|
PROJECT="ccp"
|
|
log "INFO" "Adding custom encrypted credentials in /etc/bridgehead/$PROJECT.local.conf"
|
|
read -p "Please enter custom user: " user
|
|
read -s -p "Please enter password (will not be echoed): "$'\n' password
|
|
addBasicAuthUser $user $password "NNGM_AUTH" $PROJECT |