blob: 033fbfaa3041894b8aa7fec1a557581119583cf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?xml version="1.0" encoding="UTF-8"?>
<node name="/">
<!--
com.redhat.ifcfgrh1:
Utility methods for handling NM integration with standard Red Hat ifcfg
files.
-->
<interface name="com.redhat.ifcfgrh1">
<!--
GetIfcfgDetails:
@ifcfg: The full path to an ifcfg file.
@uuid: The UUID of the NM connection backed by this ifcfg file. If the ifcfg file does not contain a UUID tag, this UUID is generated by NM, otherwise the UUID from the ifcfg file is used.
@path: The object path of the NM connected backed by this ifcfg file.
Given an ifcfg file, return various internal information about it.
-->
<method name="GetIfcfgDetails">
<arg name="ifcfg" type="s" direction="in"/>
<arg name="uuid" type="s" direction="out"/>
<arg name="path" type="o" direction="out"/>
</method>
</interface>
</node>
|