forked from avocado-framework/avocado-vt
-
Notifications
You must be signed in to change notification settings - Fork 1
CartesianConfigReference KVM guest_port_unattended_install
Xu Tian edited this page Dec 30, 2016
·
1 revision
- index
- modules |
- next |
- previous |
- Avocado VT 44.0 documentation »
- Cartesian Config »
- Cartesian Config Reference »
guest_port_unattended_install¶
Description¶
Sets the port of the helper application/script running inside guests that will be used for flagging the end of the unattended install.
Both on Linux and Windows VMs, the default value is 12323:
guest_port_unattended_install = 12323
This must match with the port number on unattended install files. On Linux VMs, this is hardcoded on kickstart files ‘%post’ section:
%post --interpreter /usr/bin/python
...
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server.bind(('', 12323))
server.listen(1)
(client, addr) = server.accept()
client.send("done")
client.close()
This is a specialization of the guest_port configuration entry.
Defined On¶
Used By¶
Referenced By¶
No other documentation currently references this configuration key.
See Also¶
- index
- modules |
- next |
- previous |
- Avocado VT 44.0 documentation »
- Cartesian Config »
- Cartesian Config Reference »
© Copyright 2014, Red Hat. Created using Sphinx 1.5.1.