mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
8 lines
158 B
Bash
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
|
|
|