Displaying 5 results from an estimated 5 matches for "addservice".
2009 May 20
1
[PATCH server] update host-browser to use ipa commands rather than kadmin
...12 @@ class HostBrowser
 
     # Executes an external program to support the keytab function.
     #
-    def kadmin_local(command)
-        system("/usr/kerberos/sbin/kadmin.local -q '" + command + "'")
+    def add_principal(command)
+        system("/usr/sbin/ipa-addservice #{command}")
+    end
+
+    def get_keytab(command,ipa_host)
+        system("ipa-getkeytab -s #{ipa_host} -p #{command} -k #{@keytab_filename}")
     end
 end
 
-- 
1.6.0.6
2009 May 15
1
[PATCH server] add server-side groundwork for remote freeipa server
...onf.d/nss.conf",
+               pattern => "Listen 8443",
+               replacement => "Listen 443",
+               require => Package[mod_nss]
+        }
+
+        single_exec {"create_HTTP_keytab":
+                command => "/usr/sbin/ipa-addservice HTTP/$ovirt_host@$realm_name",
+                require => Single_exec[ipa_install]
+        }
+
+        single_exec {"get_HTTP_keytab":
+                command => "/usr/sbin/ipa-getkeytab -s $ipa_host -p HTTP/$ovirt_host@$realm_name -k /usr/share/ovirt-server/ovirt.keyt...
2015 Nov 17
0
[PATCH 2/3] v2v: windows: Add a Windows '*.inf' file parser.
...c%", "BALLOON_Device, PCI\\VEN_1AF4&DEV_1002&SUBSYS_00051AF4&REV_00";
+    ];
+    "balloon_device.nt", [
+      "copyfiles", "Drivers_Dir";
+    ];
+    "drivers_dir", [];
+    "balloon_device.nt.services", [
+      "addservice", "BALLOON,%SPSVCINST_ASSOCSERVICE%, BALLOON_Service_Inst, BALLOON_Logging_Inst";
+    ];
+    "balloon_service_inst", [
+      "displayname", "%BALLOON.SVCDESC%";
+      "servicetype", "1";
+      "starttype", "3"...
2012 Jul 17
0
Wine release 1.5.9
...Implement Win32_Processor.Manufacturer and Win32_Processor.Name.
      fusion: Also copy external files in IAssemblyCache::InstallAssembly.
      ntdll: Report 3dnow and sse features if the processor supports them.
      setupapi: SetupInstallServicesFromInfSection doesn't fail if there are no AddService or DelService directives in the section.
      msi: Don't crash if no working directory is specified for custom action type 34.
      msi: Don't hard-code the ServicePackLevel property.
      wbemprox: Add support for evaluating string comparisons.
      wbemprox: Implement Win32_NetworkAda...
2015 Nov 17
8
[PATCH 0/3] v2v: windows: Use '*.inf' files to control how Windows drivers are installed.
https://github.com/rwmjones/libguestfs/tree/rewrite-virtio-copy-drivers
Instead of trying to split and parse elements from virtio-win paths,
use the '*.inf' files supplied with the drivers to control how Windows
drivers are installed.
The following emails best explain how this works:
https://www.redhat.com/archives/libguestfs/2015-October/msg00352.html