summaryrefslogtreecommitdiff
path: root/update.sh
blob: 2e8b0dfe47e5c798446738bca86bee21aafd603f (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
# Script run when a machine boots. (Always this
# latest version from Git).
set -eu

touch /root/at-boot-worked

# Override default /etc/ with the one from this Git.
cp -r /root/grid5k/etc/* /etc

exit 0