diff options
author | Michael DeHaan <mdehaan@redhat.com> | 2006-12-20 12:50:45 -0500 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-12-20 12:50:45 -0500 |
commit | 14068e431c2e7f615f06539b419e8112f9a6e993 (patch) | |
tree | 75dc3570d8207b2732cbec3e3ffcdd48ee004324 /cobbler/action_enchant.py | |
parent | 7e3aafc03785e709c361f278e75f280debafbe14 (diff) | |
download | cobbler-14068e431c2e7f615f06539b419e8112f9a6e993.tar.gz cobbler-14068e431c2e7f615f06539b419e8112f9a6e993.tar.xz cobbler-14068e431c2e7f615f06539b419e8112f9a6e993.zip |
Disable strict host key checking for enchant/transmogrify.
Diffstat (limited to 'cobbler/action_enchant.py')
-rw-r--r-- | cobbler/action_enchant.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cobbler/action_enchant.py b/cobbler/action_enchant.py index 610f9526..ff6fc068 100644 --- a/cobbler/action_enchant.py +++ b/cobbler/action_enchant.py @@ -46,7 +46,7 @@ class Enchant: """ Invoke an SSH command. """ - cmd2 = "ssh root@%s %s" % (self.address,cmd) + cmd2 = "ssh -o 'StrictHostKeyChecking=no' root@%s %s" % (self.address,cmd) print "running: %s" % cmd2 rc = sub_process.call(cmd2,shell=True) print "returns: %d" % rc |