You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
271 B

  1. #!/bin/sh
  2. [ -e /etc/config/attendedsysupgrade ] && exit 0
  3. touch /etc/config/attendedsysupgrade
  4. uci -q batch <<EOF
  5. add attendedsysupgrade settings
  6. set attendedsysupgrade.@settings[0].update_server=https://betaupdate.libremesh.org
  7. commit attendedsysupgrade
  8. EOF
  9. exit 01