mirror of
https://github.com/YunoHost-Apps/adguardhome_ynh.git
synced 2024-09-03 18:06:23 +02:00
trying to better handle ip processing at install
This commit is contained in:
parent
7c5ce0d152
commit
584d0ce893
2 changed files with 14 additions and 6 deletions
|
@ -81,8 +81,14 @@ process_ips(){
|
||||||
if is_public_ip "$ip" && [ "$open_port_53" == "false" ] ; then
|
if is_public_ip "$ip" && [ "$open_port_53" == "false" ] ; then
|
||||||
break
|
break
|
||||||
else
|
else
|
||||||
processed_ips="$ip"
|
if [[ $is_install = true ]]; then
|
||||||
break
|
# to get a dash before each IP
|
||||||
|
processed_ips="- $ip"
|
||||||
|
break
|
||||||
|
else
|
||||||
|
processed_ips="$ip"
|
||||||
|
break
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
|
@ -84,12 +84,14 @@ ipv6_interface="$(get_network_interface 6)"
|
||||||
# put the network interface in a dedicated dnsmasq config
|
# put the network interface in a dedicated dnsmasq config
|
||||||
configure_network_interface_dnsmasq "$ipv4_interface" "$ipv6_interface"
|
configure_network_interface_dnsmasq "$ipv4_interface" "$ipv6_interface"
|
||||||
|
|
||||||
# get IPv4 for the AGH config file (with a starting "- ")
|
# to warn process_ips that we're doing an installation (to get a dash before each IP)
|
||||||
ipv4_addr=$(echo "- " "$(process_ips "$(ip -4 address show "$ipv4_interface" 2> /dev/null | grep inet)")")
|
is_install=true
|
||||||
|
# get IPv4 for the AGH config file
|
||||||
|
ipv4_addr=$(process_ips "$(ip -4 address show "$ipv4_interface" 2> /dev/null | grep inet)")
|
||||||
|
|
||||||
# get IPv6 for the AGH config file (with a starting "- ")
|
# get IPv6 for the AGH config file
|
||||||
# the 'sed' is used to get rid of the network prefix ('/64' for example)
|
# the 'sed' is used to get rid of the network prefix ('/64' for example)
|
||||||
ipv6_addr=$(echo "- " "$(process_ips "$(ip -6 address show "$ipv6_interface" 2> /dev/null | grep inet | sed 's&/.*&&')")")
|
ipv6_addr=$(process_ips "$(ip -6 address show "$ipv6_interface" 2> /dev/null | grep inet | sed 's&/.*&&')")
|
||||||
|
|
||||||
password=$(python3 -c "import bcrypt; print(bcrypt.hashpw(b\"$password\", bcrypt.gensalt(rounds=10)).decode())")
|
password=$(python3 -c "import bcrypt; print(bcrypt.hashpw(b\"$password\", bcrypt.gensalt(rounds=10)).decode())")
|
||||||
ynh_app_setting_set --app="$app" --key=password --value="$password"
|
ynh_app_setting_set --app="$app" --key=password --value="$password"
|
||||||
|
|
Loading…
Add table
Reference in a new issue