blob: fbf2d718e6d12361b56de17c889700bbe60289e2 (
plain) (
blame)
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
|
<!-- Taken from Gentoo Linux's OpenRC settingsd -->
<node name="/org/freedesktop/hostname1">
<interface name="org.freedesktop.hostname1">
<method name="SetHostname">
<arg direction="in" type="s" name="name"/>
<arg direction="in" type="b" name="user_interaction"/>
</method>
<method name="SetStaticHostname">
<arg direction="in" type="s" name="name"/>
<arg direction="in" type="b" name="user_interaction"/>
</method>
<method name="SetPrettyHostname">
<arg direction="in" type="s" name="name"/>
<arg direction="in" type="b" name="user_interaction"/>
</method>
<method name="SetIconName">
<arg direction="in" type="s" name="name"/>
<arg direction="in" type="b" name="user_interaction"/>
</method>
<property name="Hostname" type="s" access="read"/>
<property name="StaticHostname" type="s" access="read"/>
<property name="PrettyHostname" type="s" access="read"/>
<property name="IconName" type="s" access="read"/>
</interface>
</node>
|