aboutsummaryrefslogtreecommitdiff
path: root/libexec/rc/rc.d/machine_id
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/rc/rc.d/machine_id')
-rw-r--r--libexec/rc/rc.d/machine_id2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rc/rc.d/machine_id b/libexec/rc/rc.d/machine_id
index 7cfd7b2d92f8..8bf3e41d0603 100644
--- a/libexec/rc/rc.d/machine_id
+++ b/libexec/rc/rc.d/machine_id
@@ -23,7 +23,7 @@ machine_id_start()
if [ ! -f ${machine_id_file} ] ; then
startmsg -n "Creating ${machine_id_file} "
t=$(mktemp -t machine-id)
- /bin/uuidgen -r -o $t
+ /bin/uuidgen -r -c -o $t
install -C -o root -g wheel -m ${machine_id_perms} "$t" "${machine_id_file}"
rm -f "$t"
startmsg 'done.'