Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/KOMETA/mkimage-profiles-kometa/blame/commit/d9b0a27740d9a5cd1810675b5943e6b60f5eb2d9/features.in/net/rootfs/image-scripts.d/99-systemd-resolved-link
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
[ -h /sbin/init ] || exit 0
|
|
|
|
[ -n "$GLOBAL_SYSTEMD_RESOLVED" ] || exit 0
|
|
|
|
|
|
|
|
if [ "$GLOBAL_SYSTEMD_RESOLVED" = stub ]; then
|
|
|
|
ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
|
|
|
|
else
|
|
|
|
ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf
|
|
|
|
fi
|