@@ -155,10 +155,12 @@ then
155
155
| jq -rc '.Peer[] | select(has("PrimaryRoutes")) | .PrimaryRoutes[]' \
156
156
| sort -u))
157
157
if (( 0 < ${#colliding_routes[@]} )); then
158
- bashio::log.warning "Currently the following subnets are both present as local subnets"
159
- bashio::log.warning "and are also routed within your tailnet to other nodes!"
160
- bashio::log.warning "Please reconfigure your subnet routing within your tailnet"
161
- bashio::log.warning "to prevent current or future collisions."
158
+ bashio::log.warning \
159
+ "Currently the following subnets are both present as local subnets" \
160
+ "and are also routed within your tailnet to other nodes!"
161
+ bashio::log.warning \
162
+ "Please reconfigure your subnet routing within your tailnet" \
163
+ "to prevent current or future collisions."
162
164
fi
163
165
for route in "${colliding_routes[@]}"; do
164
166
bashio::log.warning " ${route}"
169
171
if ! bashio::config.has_value "userspace_networking" || \
170
172
bashio::config.true "userspace_networking";
171
173
then
172
- bashio::log.notice "The add-on uses userspace networking mode."
173
- bashio::log.notice "If you need to access other clients on your tailnet from your Home Assistant instance,"
174
- bashio::log.notice "disable userspace networking mode, that will create a \"tailscale0\" network interface on your host."
175
- bashio::log.notice "Please check your configuration based on the add-on's documentation under \"Option: userspace_networking\""
174
+ bashio::log.notice \
175
+ "The add-on uses userspace networking mode."
176
+ bashio::log.notice \
177
+ "If you need to access other clients on your tailnet from your Home Assistant instance," \
178
+ "disable userspace networking mode, that will create a \"tailscale0\" network interface on your host."
179
+ bashio::log.notice \
180
+ "Please check your configuration based on the add-on's documentation under \"Option: userspace_networking\""
176
181
fi
0 commit comments