diff options
author | rse <rse@FreeBSD.org> | 2007-05-22 10:22:24 +0000 |
---|---|---|
committer | rse <rse@FreeBSD.org> | 2007-05-22 10:22:24 +0000 |
commit | 3817f11e340041189ec1f2f1d2408e4162f16722 (patch) | |
tree | 5ca71879127ec45f66f262503a04e421f7325bed /etc | |
parent | 9ed27d10382c7a5e19ef98f5201d68ed00734006 (diff) | |
download | FreeBSD-src-3817f11e340041189ec1f2f1d2408e4162f16722.zip FreeBSD-src-3817f11e340041189ec1f2f1d2408e4162f16722.tar.gz |
Remove the ugly csh(1) based UUID lower-case translation hack from
/etc/rc.d/hostid now that we switched the origin of the UUID (variable
smbios.system.uuid as provided by the i386 BIOS code) to already provide
a standard conforming lower-case UUID text representation.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.d/hostid | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/etc/rc.d/hostid b/etc/rc.d/hostid index 181870c..4a8cf0d 100644 --- a/etc/rc.d/hostid +++ b/etc/rc.d/hostid @@ -57,7 +57,6 @@ hostid_set() hostid_hardware() { uuid=`kenv smbios.system.uuid 2>/dev/null` - uuid=`csh -c 'echo -n ${*:al}' "${uuid}"` x="[0-9a-f]" y=$x$x$x$x z="0000" |