Micah Hunsberger
26d9341891
Add new windows module: win_hosts ( #46450 )
...
* Add win_hosts module
added win_hosts module for easier manipulation of hosts entries in "%windir%\system32\drivers\etc\hosts" for windows systems
* Update win_hosts.py
* Add alias support to win_hosts module (#1 )
* win_hosts supports aliases
added support for adding / removing aliases from a host entry, rather than adding a new entry
added ability for win_hosts to detect aliases:
`192.168.1.1 alias1 alias2 alias3`
```
win_hosts:
host_name: alias2
ip_address: 192.168.1.1
```
will result in `192.168.1.1 alias1 alias3`
also includes `replace` and `add` as options for `ip_action` (`replace` is default)
for example:
```
192.168.1.1 my_reused_alias
192.168.1.2 my_reused_alias
```
with
```
win_hosts:
host_name: my_reused_alias
ip_address: 192.168.1.3
ip_action: add
```
the result will be
```
192.168.1.1 my_reused_alias
192.168.1.2 my_reused_alias
```
but with `ip_action=replace` the result would be
```
192.168.1.3 my_reused_alias
```
* fixed metadata version and version added
* fix line endings
* upload fixed line endings
try to upload the file with the fixed line endings
* aliases and canonical names are separate entities. added IPv4 and IPv6 validation
* only makes changes if "check_mode" is false
* improved behavior for duplicate aliases/entries.
* adding tests
* missing aliases file
* fix trailing whitespace and uses explicit paths
* Tweak tests to copy and restore original hosts file
2019-04-01 06:54:05 +10:00
..
2018-08-31 16:27:32 -05:00
2018-09-20 19:37:54 +10:00
2018-12-18 08:09:19 +10:00
2019-03-15 14:59:01 +10:00
2019-03-15 14:57:59 +10:00
2019-03-06 13:40:02 -06:00
2019-03-27 10:01:31 +10:00
2019-03-06 13:40:02 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2017-10-23 11:40:54 -07:00
2019-01-03 10:50:44 -06:00
2019-03-19 11:49:25 +10:00
2019-01-03 10:50:44 -06:00
2018-07-18 10:36:59 +10:00
2019-01-03 10:50:44 -06:00
2018-11-14 16:18:34 +10:00
2018-12-19 07:25:30 +10:00
2018-07-18 10:36:43 +10:00
2019-01-03 10:50:44 -06:00
2019-03-05 14:18:00 +10:00
2019-03-05 14:18:00 +10:00
2019-03-15 16:53:02 +10:00
2019-03-05 14:18:42 +10:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2019-03-19 11:22:17 +10:00
2019-03-03 11:59:43 +00:00
2018-11-22 06:55:48 +10:00
2019-01-03 10:50:44 -06:00
2018-11-12 08:10:47 +10:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-08-30 16:25:45 +10:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2019-03-19 15:37:14 +10:00
2019-03-19 15:37:14 +10:00
2018-08-27 15:54:16 +10:00
2019-01-03 10:50:44 -06:00
2018-08-10 16:17:45 +10:00
2019-01-03 10:50:44 -06:00
2019-03-15 10:43:08 +10:00
2019-03-15 10:43:08 +10:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2019-03-28 14:36:26 +10:00
2019-03-28 14:36:26 +10:00
2018-07-17 14:29:05 -07:00
2019-01-22 11:04:22 +10:00
2019-03-08 08:44:12 +10:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2019-03-06 06:49:37 +10:00
2019-03-06 06:49:37 +10:00
2019-03-26 09:52:03 +10:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-03-06 13:22:58 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-09-11 14:23:48 +10:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2019-03-19 09:20:33 +10:00
2019-03-06 13:40:02 -06:00
2019-03-19 10:30:11 +10:00
2019-03-19 10:30:11 +10:00
2018-12-21 12:05:28 +10:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-02-22 10:24:16 +00:00
2019-03-19 12:01:35 +10:00
2019-03-12 07:56:51 +10:00
2019-01-31 11:48:49 +10:00
2019-01-31 11:48:49 +10:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2019-04-01 06:54:05 +10:00
2019-04-01 06:54:05 +10:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-07-19 05:37:07 +10:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-06-26 11:19:09 +10:00
2019-01-03 10:50:44 -06:00
2018-09-11 13:04:23 +10:00
2019-01-03 10:50:44 -06:00
2018-07-19 05:37:07 +10:00
2019-01-03 10:50:44 -06:00
2019-02-25 11:37:25 +10:00
2019-02-25 11:37:25 +10:00
2018-11-22 08:12:41 +10:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2019-04-01 05:56:48 +10:00
2019-04-01 05:56:48 +10:00
2019-03-28 05:26:20 +10:00
2019-03-28 05:26:20 +10:00
2019-03-15 14:58:15 +10:00
2019-03-06 13:40:02 -06:00
2019-02-13 19:08:07 +10:00
2019-02-13 19:08:07 +10:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2019-01-30 07:30:59 +10:00
2019-01-30 07:30:59 +10:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-11-07 10:53:17 +10:00
2019-01-03 10:50:44 -06:00
2019-02-01 08:07:37 +10:00
2019-02-01 06:32:12 +10:00
2019-02-06 06:59:06 +10:00
2019-02-13 19:09:30 +10:00
2019-03-19 12:51:30 +10:00
2019-03-12 09:05:43 +10:00
2019-03-11 05:43:21 +10:00
2019-03-11 05:43:21 +10:00
2019-02-12 12:22:22 -08:00
2019-02-12 15:51:03 -05:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2019-01-30 07:21:56 +10:00
2019-03-06 13:22:58 -06:00
2019-01-30 07:21:56 +10:00
2019-03-06 13:22:58 -06:00
2019-01-30 07:21:56 +10:00
2019-03-06 13:22:58 -06:00
2019-03-13 10:47:17 +10:00
2019-03-08 05:41:52 +10:00
2019-03-08 05:41:52 +10:00
2019-03-27 06:30:05 +10:00
2019-01-03 10:50:44 -06:00
2018-07-30 14:48:54 -07:00
2019-01-03 10:50:44 -06:00
2018-10-03 09:17:27 -07:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-12-05 22:39:06 -05:00
2019-01-03 10:50:44 -06:00
2018-11-19 07:07:12 +10:00
2019-03-12 07:56:51 +10:00
2018-09-11 14:22:57 +10:00
2019-01-03 10:50:44 -06:00
2018-10-02 15:55:53 -07:00
2019-01-03 10:50:44 -06:00
2018-11-20 09:21:28 +10:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-10-03 09:17:27 -07:00
2019-01-03 10:50:44 -06:00
2019-03-28 11:28:28 +10:00
2019-03-28 11:28:28 +10:00
2018-11-14 12:15:04 +10:00
2019-01-03 10:50:44 -06:00
2018-11-22 06:55:10 +10:00
2019-01-03 10:50:44 -06:00
2019-01-31 15:56:06 +10:00
2019-03-12 07:56:51 +10:00
2019-03-15 14:57:27 +10:00
2019-03-15 14:57:27 +10:00
2019-02-25 11:37:25 +10:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2019-02-04 12:59:36 +10:00
2019-02-04 12:59:36 +10:00
2019-02-28 15:55:18 -05:00
2019-03-12 07:56:51 +10:00
2019-02-05 06:16:29 +10:00
2019-01-22 11:04:22 +10:00
2019-03-28 12:30:20 +10:00
2019-01-03 10:50:44 -06:00
2018-10-04 05:55:02 +10:00
2019-01-22 11:04:22 +10:00
2018-11-17 02:15:49 +01:00
2019-03-12 07:56:51 +10:00
2018-08-31 22:20:56 +02:00
2019-01-03 10:50:44 -06:00
2018-11-12 07:06:55 +10:00
2019-01-03 10:50:44 -06:00
2018-07-17 14:29:05 -07:00
2019-01-03 10:50:44 -06:00
2018-07-30 14:48:54 -07:00
2019-01-03 10:50:44 -06:00
2019-02-25 11:37:25 +10:00
2019-02-25 11:37:25 +10:00