diff options
author | makefu <github@syntax-fehler.de> | 2013-01-06 11:58:42 +0700 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-01-06 11:58:42 +0700 |
commit | 5d777ccc8d1291f00c59e7725ffb1996a43154f3 (patch) | |
tree | c79e558323f1cdd73535e4a171403c3fb45d64e4 /minikrebs/profiles/krebs/customfiles/usr/bin/genhostid | |
parent | c2fbad3aac1e2829349d8451b502bca754bb35cf (diff) |
minikrebs: krebs base profile - initial vomit
Diffstat (limited to 'minikrebs/profiles/krebs/customfiles/usr/bin/genhostid')
-rwxr-xr-x | minikrebs/profiles/krebs/customfiles/usr/bin/genhostid | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/minikrebs/profiles/krebs/customfiles/usr/bin/genhostid b/minikrebs/profiles/krebs/customfiles/usr/bin/genhostid new file mode 100755 index 00000000..e6010471 --- /dev/null +++ b/minikrebs/profiles/krebs/customfiles/usr/bin/genhostid @@ -0,0 +1,4 @@ +#!/bin/sh +if [ ! -e /etc/hostid ];then + dd if=/dev/urandom bs=1 count=4 | hexdump -e '8 "%x"' > /etc/hostid +fi |