summaryrefslogtreecommitdiffstats
path: root/cobbler
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-05-05 17:02:48 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-05-05 17:02:48 -0400
commite38519a052ae0c5aa472856621de15e45e008845 (patch)
tree93445d57682c803c91ae250c4adccf4c87b68646 /cobbler
parent19e53e8ad1a6889d020c6029d2d34273dacdc750 (diff)
downloadthird_party-cobbler-e38519a052ae0c5aa472856621de15e45e008845.tar.gz
third_party-cobbler-e38519a052ae0c5aa472856621de15e45e008845.tar.xz
third_party-cobbler-e38519a052ae0c5aa472856621de15e45e008845.zip
omshell wants lowercase macs
Diffstat (limited to 'cobbler')
-rw-r--r--cobbler/modules/manage_isc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cobbler/modules/manage_isc.py b/cobbler/modules/manage_isc.py
index 895eadc..c398270 100644
--- a/cobbler/modules/manage_isc.py
+++ b/cobbler/modules/manage_isc.py
@@ -84,7 +84,7 @@ class IscManager:
tochild.flush()
tochild.write("set ip-address = %s\n" % ip)
tochild.flush()
- tochild.write("set hardware-address = %s\n" % mac)
+ tochild.write("set hardware-address = %s\n" % mac.lower())
tochild.flush()
tochild.write("set hardware-type = 1\n")
tochild.flush()