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/src/commit/22f7f75d8d725c6f85e1555591835820b74c1b07/bld/live/image-scripts.d/70-network-shares-dhcpcd.sh You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 
 
mkimage-profiles-kometa/bld/live/image-scripts.d/70-network-shares-dhcpcd.sh

10 lines
269 B

#!/bin/sh -efu
dhcpcd_conf="/etc/dhcpcd.conf"
[ -f "$dhcpcd_conf" ] || exit 0
grep -q '^option[[:blank:]]\+vendor_encapsulated_options' "$dhcpcd_conf" || {
echo "# added by 70-network-shares-dhcpcd.sh"
echo "option vendor_encapsulated_options"
} >> "$dhcpcd_conf"