summaryrefslogtreecommitdiffstats
path: root/modules.d/slx-uuid/scripts/copy-system-uuid-to-newroot.sh
blob: 553109fb9529d182924292843b8597762922be7f (plain) (blame)
1
2
3
4
5
6
#!/usr/bin/env bash

if [ -s "/run/system-uuid" ]; then
	cp "/run/system-uuid" "$NEWROOT/etc/system-uuid"
fi
true