20:01:46 #startmeeting Ansible Windows Working Group 20:01:46 Meeting started Tue Jan 30 20:01:46 2018 UTC. The chair is jborean93. Information about MeetBot at http://wiki.debian.org/MeetBot. 20:01:46 Useful Commands: #action #agreed #halp #info #idea #link #topic. 20:01:46 The meeting name has been set to 'ansible_windows_working_group' 20:01:55 hey 20:02:03 hey 20:02:07 #chair nwsparks 20:02:07 Current chairs: jborean93 nwsparks 20:03:02 give it a minute or 2 to see if anyone else will be joining 20:03:10 ok 20:04:16 #topic https://github.com/ansible/community/issues/294 20:04:34 Looks like it is just us 2 for now 20:04:49 Is there anything you wanted to talk about? 20:06:13 i dont have anything for today. i've still got those changes pending for win_lineinfile...will try and get to it in the next few days 20:08:11 o/ 20:08:15 hey 20:08:18 #chair dag 20:08:18 Current chairs: dag jborean93 nwsparks 20:08:19 sorry, lost track of time :-) 20:08:31 and was waiting for my topic in the core meeting 20:08:38 o/ 20:08:42 it looks like it just came up 20:08:45 #chair nitzmahone 20:08:45 Current chairs: dag jborean93 nitzmahone nwsparks 20:08:46 haha 20:08:48 Yeah, core meeting running long today 20:09:33 Cool, well we didn't really have anything productive to add to the meeting, now that dag is here he may want to talk about his topics in the agenda but he may be back and forthing with the core meeting 20:10:07 The only thing I had to add is if you are using win_uri it would be great if you could test out https://github.com/ansible/ansible/pull/35487, I had to change a few underlying libraries and would be good to know if hasn't broken anything major 20:12:22 on the progress tracker should i remove win_iis_webbinding for idempotence? it was added in the changes i made 20:12:38 I believe so 20:12:57 The main egregious errors seem to be gone and we can track further issues with github issues if needed 20:13:04 ok 20:13:18 i dont think i use win_uri in any of my stuff but if i get a chance ill mess with it 20:13:44 Same, but there were a lot of issues opened for it and thought it would be good to fix 20:14:15 I know I broke compatibility with a few things regarding return values but it is a preview module so I'm find with that 20:14:37 yah 20:14:51 just making sure the change from the `Invoke-WebRequest` cmd to the `System.Net.HttpWebRequest` class didn't break anything else 20:17:31 Apart from that I've got nothing else, I'll leave the meeting open to 7 in case the core meeting finishes and the others wanted to talk about something in particular 20:20:20 jborean93: thanks for the win_uri work, this was very needed 20:20:34 jborean93: did you look at feature-completeness wrt. uri module ? 20:21:00 It is mostly there, I think a few minor things are missing but I was aiming more for fixing the issues before adding in more features 20:21:18 I wanted to add Facts-support to existing modules, as the python modules already do it (without specific support in the facts subsystem) 20:21:36 so if you change the hostname, the hostname fact is updated automagically 20:21:57 I wish for Windows the same things would happen (and I already have a second PR ready for it) 20:23:07 I do like the idea, am not opposed to it, but the key is in the impl 20:24:19 are you just using hostname as an example? 20:24:48 would it make sense to update it after changing it before a reboot takes place? 20:30:32 nwsparks: hostname for windows is probably less useful, but it's an example ;-) 20:30:53 fact is that we don't do new facts gathering after a reboot, so ... 20:31:02 ah gotcha 20:31:13 that's been discussed before as well 20:31:24 that might be nice 20:31:33 but hostname is the except, think updating PATH 20:31:46 after that, the facts should have an updated PATH too 20:43:23 my other PR only had a handful of facts to update 20:43:50 and only the domain-related stuff was a bit more complicated (as not all that information was readily available, so it required to reuse a bit of setup.ps1) 20:44:18 although you probably want to reboot after those modules anyway too 20:44:47 so all-in-all I think it touches about 10 modules, mostly related to reboot_pending/reboot_required 20:44:59 I think moving the facts into a module util would make the reuse a lot easier, that way a module could call the same subset of the setup facts and use the same method to gather those facts 20:45:45 jborean93: I agree, but it's only win_domain_* that requires a single snippet 20:46:23 jborean93: so waiting to do the Right Thing(tm) incl. python module_utils is going to be a long journey 20:46:37 Yep; that was the plan, but I wanted to get the subset/segmentation stuff taken care of first. Making it down to individual facts will make that code quite large 20:46:39 whereas the python modules just set those (known) facts 20:47:04 so I would suggest taking the easy road for now 20:47:06 So maybe leaving at individual callable subsets would be best 20:47:32 the fact that we have Set-AnsibleFact will make it super-easy to replace when the time is nigh 20:47:55 yep, so each subset can be called independently which gathers more than 1 fact but not the whole shebang 20:47:56 plus in most cases you don't need a lookup (as setup does) because the value is a given 20:48:13 let's just hope we don't need to refresh the processor facts 20:48:18 :-) 20:48:18 (have you both looked at the gather_subset stuff on windows setup.ps1?) 20:48:52 I did 20:49:41 I found a whole bunch more setup parity issues in the process- fixed a couple small ones while I was in there, but the rest will have to wait for 2.6 20:49:43 I still have not made my mind up whether separate facts modules, or gather_subsets, or something else is best 20:50:15 because I don't think most facts don't belong in setup.py/setup.ps1 20:50:16 My plan was to move subset guts into module_utils so they're callable by modules 20:50:23 -don't 20:50:47 processor is one such example, why would someone want that by default in his facts ? 20:51:22 that's already a very niche thing to want for influencing playbook logic... 20:51:33 architecture fine, but processor info... 20:51:46 because we didn't have separate facts modules at the time + wanted parity with the Pythons etup 20:52:00 I agree, was talking in general here ;-) 20:52:17 agreed; would prefer if we collected only the `min` subset (and even pare that down a bit IMO) by default 20:53:12 But that ship has sailed for the most part 20:53:25 again, next AnsibleFest we need this big holistic facts discussion :-/ 20:53:54 even if we won't do it before v3.0 it'd be nice if we had the plan drafted 20:54:11 anyway, not for this meeting... 20:54:39 yep; I think we're all agreed we could do a lot better/different than we do now, but will be fun to see if we can coalesce on a shared definition of "different" 20:55:06 hehe 20:55:14 * jborean93 wonders if we will have 3.0 or 2.10 after 2.9 20:55:16 as long as we vote, things will be fine 20:55:39 * nitzmahone can't tell if dag is being snarky 20:55:52 hehe 20:56:04 * nitzmahone avoids making mention of 2016 US presidential elections 20:56:33 do we need to discuss anything before v2.5 ? 20:56:39 what's still in the pipeline ? 20:56:46 what could we still be fixing ? 20:56:54 nothing major from me 20:57:06 Once community freeze hits, we'll start more aggressively triaging open issues 20:57:08 win_uri was major :-) 20:57:38 I was going over the progress page, there's still some meat in there 20:57:57 Been trying to get all the feature stuff over the line for Windows and Azure (the latter has been sucking up a lot of time for me this go'round) 20:58:06 I noticed 20:58:11 a lot of modules ! 20:58:12 I didn't get to a lot of Windows stuff :( 20:58:29 Azure has been... fun 20:58:29 Thankfully Jordan's been cranking stuff out like a machine ;) 20:58:33 so jborean joined the team and pushed you out, it seems :-) 20:59:20 ha never, nitzmahone is forever the OG Windows guy 20:59:21 More like "saved my a$s" - if this Azure stuff had hit and he wasn't here to do what he's been on Windows, it'd be a pretty quiet release (or I'd be working 20h days) 20:59:24 jborean93: were you involved in azure as well ? 20:59:46 briefly, been doing some reviews of the PRs and worked on some minor issues 20:59:48 jborean93: was doing 20h days... 20:59:55 nitzmahone has been doing the bulk of the work there 21:00:01 well, technically church and sivel are the real OG Windows guys, but I bet they'd never admit it ;) 21:00:28 so much so they are not a part of this channel 21:00:41 deadbeat dads ;) 21:00:43 hehe 21:02:00 cool, well probably time to close the meeting unless you had more to talk about 21:02:06 I'm good 21:02:18 well, the Windows stuff has very quickly matured the past 2 years, now with pslint 21:02:29 and maybe style-related checks ? 21:02:34 Hello 21:02:42 #endmeeting