1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00
iiab/roles/2-common/templates/iiab-startup.sh

9 lines
158 B
Bash
Raw Normal View History

#!/bin/bash
# put initialization that needs to happen at every startup for IIAB here
if [ ! -f /etc/iiab/uuid ]; then
uuidgen > /etc/iiab/uuid
fi
2017-11-25 01:25:55 +00:00
exit 0