summarylogtreecommitdiffstats
path: root/boot-mirror.sh
blob: 26126793fc1b28dcf014eba98c475f6167c96ee2 (plain)
1
2
3
4
5
6
7
#!/bin/sh

n=2
while [ -d /boot$n ]; do
	rsync -ra --delete /boot/ /boot$n/
	n=$((n+1))
done