Displaying 1 result from an estimated 1 matches for "get_keytab".
2009 May 20
1
[PATCH server] update host-browser to use ipa commands rather than kadmin
...puts "Writing keytab file: #{@keytab_filename}" unless defined?(TESTING)
+ admin_keytab="/usr/share/ovirt-server/ipa-admin.tab"
+ system("/usr/kerberos/bin/kinit admin -k -t #{admin_keytab}")
+ add_principal(libvirt_princ)
+ get_keytab(libvirt_princ,ipa_host)
+ add_principal(qpidd_princ)
+ get_keytab(qpidd_princ,ipa_host)
File.chmod(0644, at keytab_filename)
end
@@ -367,8 +378,12 @@ class HostBrowser
# Executes an external program to support the keytab function.
#
- def...