summaryrefslogtreecommitdiff
path: root/libvirt/resource_libvirt_network.go
Commit message (Collapse)AuthorAge
* remove running property in net and domainDario Maiocchi2017-11-28
|
* add test for autostart optionDario Maiocchi2017-11-27
|
* Init first backportDario Maiocchi2017-11-27
|
* remove duplicata declaration and simplify code.Dario Maiocchi2017-11-16
| | | | This fix is with the cmd "gofmt -w -s *"
* common string constant for errmsg lvirtconn is nilDario Maiocchi2017-11-16
|
* error strings should not be capitalized or endDario Maiocchi2017-11-16
| | | | with punctuation or a newline
* don't use underscores in Go namesDario Maiocchi2017-11-16
|
* Fix string format of network addressesGraham Hayes2017-08-10
| | | | | | | Network addresses when trying to format the prefix as an int, while it is a string Fixes: #160
* network: ensure networks are recreatedThomas Hipp2017-08-08
| | | | | | | | | | Ensure that networks are only free'd if there are no errors. Furthermore, make sure that networks are recreated if they cannot be found on the remote. This fixes #74. Signed-off-by: Thomas Hipp <thipp@suse.de>
* use github.com/libvirt-go-xmlThomas Hipp2017-07-27
| | | | | | | | Replace the custom XML structs with libvirt's offcial ones. This resolves #143. Signed-off-by: Thomas Hipp <thipp@suse.de>
* use official libvirt-go bindingsThomas Hipp2017-06-16
| | | | Signed-off-by: Thomas Hipp <thipp@suse.de>
* gofmtAlvaro Saurin2017-03-06
|
* Merge pull request #101 from rsokolkov/fix-docs-for-networkAlvaro2017-02-20
|\ | | | | [Docs] Clearer description for "addresses" param
| * [Docs] Clearer description for "addresses" paramRoman Sokolkov2017-02-17
| |
* | Merge remote-tracking branch 'origin' into bridge_fixDean Smith2017-02-17
|\|
| * Add DNS forwarder blocks to network resource definitionEamonn O'Toole2017-02-08
| | | | | | | | | | | | | | | | | | | | | | | | There can be one or more of these optional blocks. Each block looks as follows: dns_forwarder { address = "my address" domain = "my domain" } One or both of "address" and "domain" can be specified in each block.
* | Fix for bridged networks.Dean Smith2017-02-17
|/ | | | | | | Need to make domain attribute optional, as not used for bridge Disabling forwarding for bridged networks Ensure that parsing existing network doesn't fail due to lack of domain attribute
* Make sure we record the resource IDs even if it gets interruptedAlvaro Saurin2016-10-17
|
* Do not specify NAT when using routed networkAlvaro Saurin2016-08-02
|
* Activate stopped networksFlavio Castelli2016-07-06
| | | | | | | | | Make sure the network is active after the apply command is issued. This is really handy when running apply on a host that has just been rebooted. Signed-off-by: Flavio Castelli <fcastelli@suse.com>
* Network: fix deletionFlavio Castelli2016-07-01
| | | | | | | To really get rid of a network you have to destroy and undefine it. Moreover the network has to be active in order to be removed. Signed-off-by: Flavio Castelli <fcastelli@suse.com>
* Improved network resourceAlvaro Saurin2016-07-01
Methods for adding/removing hosts to a network Style, formatting improvements and fixes