11 lines
341 B
Bash
11 lines
341 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
wesher_secret="$(ask_password "wesher configuration" "Enter the wesher shared secret:")";
|
||
|
|
||
|
wesher_join_ip="$(ask_text "wesher configuration" "Enter an IP of a host in the cluster to join:")";
|
||
|
|
||
|
queue_apt_install "raspberrypi-kernel-headers" "wireguard" "wesher" "wesher-systemd";
|
||
|
|
||
|
|
||
|
queue_postinstall_step "10-wesher.sh";
|