1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/2-common/templates/iiab-startup.sh
2017-11-25 01:25:55 +00:00

8 lines
158 B
Bash

#!/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
exit 0