fix hashedMasterPassword: install missing `mkpasswd` via `whois` package
continuous-integration/drone/push Build is passing Details

hetzner-flakes
Alexander 2023-12-11 13:40:42 +04:00
parent ba181fb162
commit 158c711f66
1 changed files with 3 additions and 1 deletions

View File

@ -278,6 +278,7 @@ checkEnv() {
req xzcat || { echo "ERROR: Missing xzcat"; return 1; }
req awk || { echo "ERROR: Missing awk"; return 1; }
req cut || req df || { echo "ERROR: Missing coreutils (cut, df)"; return 1; }
req mkpasswd || { echo "ERROR: Missing mkpasswd"; return 1; }
}
# Download and execute the nix installer script.
@ -374,9 +375,10 @@ set -o pipefail
set -o nounset
set -o xtrace
set -o errexit
shopt -s inherit_errexit
apt update
apt install -y git tar curl jq
apt install -y git tar curl whois jq
checkEnv
prepareEnv