Update wireguard.sh

This commit is contained in:
tteckster 2022-03-20 11:45:53 -04:00 committed by GitHub
parent ed23baadce
commit fcb8aafa59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -236,9 +236,14 @@ if [ "$STORAGE_TYPE" == "zfspool" ]; then
warn "Some addons may not work due to ZFS not supporting 'fallocate'." warn "Some addons may not work due to ZFS not supporting 'fallocate'."
fi fi
if [ "$DHCP" == "1" ]; then if [ "$DHCP" == "1" ]; then
pct config $CTID | grep -i hwaddr MAC=$(pct config $CTID \
| grep -i hwaddr \
| awk '{print substr($2, 31, length($3) 17 ) }') \
echo -e "MAC Address ${BL}$MAC${CL}"
dhcp_reservation(){ dhcp_reservation(){
printf "Please set DHCP Reservation and press Enter." printf "Please set DHCP reservation and press Enter."
read read
} }
dhcp_reservation dhcp_reservation