local-server/update-boot.sh

13 lines
173 B
Bash
Raw Normal View History

2019-03-29 08:49:31 +00:00
#! /bin/bash
dls_url="$1"
set -ex
mount -o remount,rw /boot
rm -fr /boot/previous ||true
mv /boot/current /boot/previous
curl $dls_url/me/boot.tar |tar xv -C /boot
sync