Re: FBR: hotfix for nova_compute bug

2016-10-03 Thread Catalin
+1

2016-10-04 1:15 GMT+03:00 Stephen John Smoogen :
> +1
>
> On 3 October 2016 at 17:00, Patrick Uiterwijk  wrote:
>> Can I get any +1s?
>>
>> This has been sent upstream and merged, but wasn't in the latest update.
>>
>>
>> commit f8e4bcbe15d421141bcdfc72146fca604e2284ee
>> Author: Patrick Uiterwijk 
>> Date:   Mon Oct 3 20:57:53 2016 +
>>
>> Hotfix for nova_compute bug
>>
>> Signed-off-by: Patrick Uiterwijk 
>>
>> diff --git a/roles/ansible-server/files/4070.patch
>> b/roles/ansible-server/files/4070.patch
>> new file mode 100644
>> index 000..b8e1956
>> --- /dev/null
>> +++ b/roles/ansible-server/files/4070.patch
>> @@ -0,0 +1,40 @@
>> +From bd065748a934b9c4261602ab5f1b975e5a441dd0 Mon Sep 17 00:00:00 2001
>> +From: Patrick Uiterwijk 
>> +Date: Wed, 29 Jun 2016 12:59:23 +
>> +Subject: [PATCH] nova_compute: indicate argument type
>> +
>> +Without this, ansible 2.1 will convert some arguments that are
>> +meant to be dict or list type to their str representation.
>> +
>> +Signed-off-by: Patrick Uiterwijk 
>> +---
>> + cloud/openstack/_nova_compute.py | 10 +-
>> + 1 file changed, 5 insertions(+), 5 deletions(-)
>> +
>> +diff --git a/cloud/openstack/_nova_compute.py
>> b/cloud/openstack/_nova_compute.py
>> +index 8b8545f..29d3ab0 100644
>> +--- a/cloud/openstack/_nova_compute.py
>>  b/cloud/openstack/_nova_compute.py
>> +@@ -543,17 +543,17 @@ def main():
>> + flavor_include  = dict(default=None),
>> + key_name= dict(default=None),
>> + security_groups = dict(default='default'),
>> +-nics= dict(default=None),
>> +-meta= dict(default=None),
>> ++nics= dict(default=None, type='list'),
>> ++meta= dict(default=None, type='dict'),
>> + wait= dict(default='yes',
>> choices=['yes', 'no']),
>> + wait_for= dict(default=180),
>> + state   = dict(default='present',
>> choices=['absent', 'present']),
>> + user_data   = dict(default=None),
>> + config_drive= dict(default=False, type='bool'),
>> + auto_floating_ip= dict(default=False, type='bool'),
>> +-floating_ips= dict(default=None),
>> +-floating_ip_pools   = dict(default=None),
>> +-scheduler_hints = dict(default=None),
>> ++floating_ips= dict(default=None, type='list'),
>> ++floating_ip_pools   = dict(default=None, type='list'),
>> ++scheduler_hints = dict(default=None, type='dict'),
>> + ))
>> + module = AnsibleModule(
>> + argument_spec=argument_spec,
>> diff --git a/roles/ansible-server/tasks/main.yml
>> b/roles/ansible-server/tasks/main.yml
>> index f41d5ce..22a58f0 100644
>> --- a/roles/ansible-server/tasks/main.yml
>> +++ b/roles/ansible-server/tasks/main.yml
>> @@ -20,6 +20,12 @@
>>copy: src=dns_check.py dest=/usr/local/bin/dns_check owner=root mode=0755
>>tags:
>>- ansible-server
>> +
>> +# https://github.com/ansible/ansible-modules-core/pull/4070
>> +- name: Fix the nova_compute module
>> +  patch: src=4070.patch
>> + 
>> dest=/usr/lib/python2.7/site-packages/ansible/modules/core/cloud/openstack/_nova_compute.py
>> +#
>>  #
>>  # TODO:
>>  #  cgit?
>> ___
>> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
>> To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org
>
>
>
> --
> Stephen J Smoogen.
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: FBR: hotfix for nova_compute bug

2016-10-03 Thread Stephen John Smoogen
+1

On 3 October 2016 at 17:00, Patrick Uiterwijk  wrote:
> Can I get any +1s?
>
> This has been sent upstream and merged, but wasn't in the latest update.
>
>
> commit f8e4bcbe15d421141bcdfc72146fca604e2284ee
> Author: Patrick Uiterwijk 
> Date:   Mon Oct 3 20:57:53 2016 +
>
> Hotfix for nova_compute bug
>
> Signed-off-by: Patrick Uiterwijk 
>
> diff --git a/roles/ansible-server/files/4070.patch
> b/roles/ansible-server/files/4070.patch
> new file mode 100644
> index 000..b8e1956
> --- /dev/null
> +++ b/roles/ansible-server/files/4070.patch
> @@ -0,0 +1,40 @@
> +From bd065748a934b9c4261602ab5f1b975e5a441dd0 Mon Sep 17 00:00:00 2001
> +From: Patrick Uiterwijk 
> +Date: Wed, 29 Jun 2016 12:59:23 +
> +Subject: [PATCH] nova_compute: indicate argument type
> +
> +Without this, ansible 2.1 will convert some arguments that are
> +meant to be dict or list type to their str representation.
> +
> +Signed-off-by: Patrick Uiterwijk 
> +---
> + cloud/openstack/_nova_compute.py | 10 +-
> + 1 file changed, 5 insertions(+), 5 deletions(-)
> +
> +diff --git a/cloud/openstack/_nova_compute.py
> b/cloud/openstack/_nova_compute.py
> +index 8b8545f..29d3ab0 100644
> +--- a/cloud/openstack/_nova_compute.py
>  b/cloud/openstack/_nova_compute.py
> +@@ -543,17 +543,17 @@ def main():
> + flavor_include  = dict(default=None),
> + key_name= dict(default=None),
> + security_groups = dict(default='default'),
> +-nics= dict(default=None),
> +-meta= dict(default=None),
> ++nics= dict(default=None, type='list'),
> ++meta= dict(default=None, type='dict'),
> + wait= dict(default='yes',
> choices=['yes', 'no']),
> + wait_for= dict(default=180),
> + state   = dict(default='present',
> choices=['absent', 'present']),
> + user_data   = dict(default=None),
> + config_drive= dict(default=False, type='bool'),
> + auto_floating_ip= dict(default=False, type='bool'),
> +-floating_ips= dict(default=None),
> +-floating_ip_pools   = dict(default=None),
> +-scheduler_hints = dict(default=None),
> ++floating_ips= dict(default=None, type='list'),
> ++floating_ip_pools   = dict(default=None, type='list'),
> ++scheduler_hints = dict(default=None, type='dict'),
> + ))
> + module = AnsibleModule(
> + argument_spec=argument_spec,
> diff --git a/roles/ansible-server/tasks/main.yml
> b/roles/ansible-server/tasks/main.yml
> index f41d5ce..22a58f0 100644
> --- a/roles/ansible-server/tasks/main.yml
> +++ b/roles/ansible-server/tasks/main.yml
> @@ -20,6 +20,12 @@
>copy: src=dns_check.py dest=/usr/local/bin/dns_check owner=root mode=0755
>tags:
>- ansible-server
> +
> +# https://github.com/ansible/ansible-modules-core/pull/4070
> +- name: Fix the nova_compute module
> +  patch: src=4070.patch
> + 
> dest=/usr/lib/python2.7/site-packages/ansible/modules/core/cloud/openstack/_nova_compute.py
> +#
>  #
>  # TODO:
>  #  cgit?
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org



-- 
Stephen J Smoogen.
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: Freeze break request: Fix blocker bug proposal

2016-10-03 Thread Tim Flink
On Mon, 3 Oct 2016 11:29:12 -0600
Tim Flink  wrote:

> There was an issue reported last week about using the blockerbugs app
> to propose new blocker bugs.
> 
> It turned out to be a simple fix and a new build has been deployed to
> stg.
> 
> Can I get +1s to update production blockerbugs? The change to the app
> itself is:
> 
> https://git.fedorahosted.org/cgit/blockerbugs.git/commit/?id=f3fd68156be72bad79eb87b4e4380c2c355a40f3

The production blockerbugs instances have been updated to the new
version for this fix.

Thanks,

Tim


pgplb6ctfnTqC.pgp
Description: OpenPGP digital signature
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: FBR: hotfix for nova_compute bug

2016-10-03 Thread Kevin Fenzi
+1 here. 

kevin



pgpkZV0R1_t6p.pgp
Description: OpenPGP digital signature
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


FBR: hotfix for nova_compute bug

2016-10-03 Thread Patrick Uiterwijk
Can I get any +1s?

This has been sent upstream and merged, but wasn't in the latest update.


commit f8e4bcbe15d421141bcdfc72146fca604e2284ee
Author: Patrick Uiterwijk 
Date:   Mon Oct 3 20:57:53 2016 +

Hotfix for nova_compute bug

Signed-off-by: Patrick Uiterwijk 

diff --git a/roles/ansible-server/files/4070.patch
b/roles/ansible-server/files/4070.patch
new file mode 100644
index 000..b8e1956
--- /dev/null
+++ b/roles/ansible-server/files/4070.patch
@@ -0,0 +1,40 @@
+From bd065748a934b9c4261602ab5f1b975e5a441dd0 Mon Sep 17 00:00:00 2001
+From: Patrick Uiterwijk 
+Date: Wed, 29 Jun 2016 12:59:23 +
+Subject: [PATCH] nova_compute: indicate argument type
+
+Without this, ansible 2.1 will convert some arguments that are
+meant to be dict or list type to their str representation.
+
+Signed-off-by: Patrick Uiterwijk 
+---
+ cloud/openstack/_nova_compute.py | 10 +-
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/cloud/openstack/_nova_compute.py
b/cloud/openstack/_nova_compute.py
+index 8b8545f..29d3ab0 100644
+--- a/cloud/openstack/_nova_compute.py
 b/cloud/openstack/_nova_compute.py
+@@ -543,17 +543,17 @@ def main():
+ flavor_include  = dict(default=None),
+ key_name= dict(default=None),
+ security_groups = dict(default='default'),
+-nics= dict(default=None),
+-meta= dict(default=None),
++nics= dict(default=None, type='list'),
++meta= dict(default=None, type='dict'),
+ wait= dict(default='yes',
choices=['yes', 'no']),
+ wait_for= dict(default=180),
+ state   = dict(default='present',
choices=['absent', 'present']),
+ user_data   = dict(default=None),
+ config_drive= dict(default=False, type='bool'),
+ auto_floating_ip= dict(default=False, type='bool'),
+-floating_ips= dict(default=None),
+-floating_ip_pools   = dict(default=None),
+-scheduler_hints = dict(default=None),
++floating_ips= dict(default=None, type='list'),
++floating_ip_pools   = dict(default=None, type='list'),
++scheduler_hints = dict(default=None, type='dict'),
+ ))
+ module = AnsibleModule(
+ argument_spec=argument_spec,
diff --git a/roles/ansible-server/tasks/main.yml
b/roles/ansible-server/tasks/main.yml
index f41d5ce..22a58f0 100644
--- a/roles/ansible-server/tasks/main.yml
+++ b/roles/ansible-server/tasks/main.yml
@@ -20,6 +20,12 @@
   copy: src=dns_check.py dest=/usr/local/bin/dns_check owner=root mode=0755
   tags:
   - ansible-server
+
+# https://github.com/ansible/ansible-modules-core/pull/4070
+- name: Fix the nova_compute module
+  patch: src=4070.patch
+ 
dest=/usr/lib/python2.7/site-packages/ansible/modules/core/cloud/openstack/_nova_compute.py
+#
 #
 # TODO:
 #  cgit?
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: [Freeze Break Request] Bodhi: Don't allow Karma to set request to None

2016-10-03 Thread Kevin Fenzi
On Mon, 03 Oct 2016 14:50:48 -0400
Randy Barlow  wrote:

> Howdy partners,
> 
> Bodhi 2.2.0 introduced a new feature that allowed updates to not
> autopush, but to still have karma thresholds. Once the update reaches
> the karma threshold when autopush is off, the submitter will be
> offered the "push to stable" button.
> 
> There's a bug in this code that results in Karma comments explicitly
> setting the update request to None[0]. This results in popular updates
> that use this feature getting stuck in testing, as every time the
> submitter clicks push to stable there's a race between release
> engineering pushing the update vs. any helpful tester giving karma to
> the update (which will set the request back to None).
> 
> I'd like to make one more 2.2 series update for Bodhi to resolve this
> issue. The patch[1] is quite small, and is really only deleting a
> single line of code from production. The rest of the patch is
> adjusting tests.
> 
> So what say you, yay or nay?

+1 here

kevin


pgpkWgZue485q.pgp
Description: OpenPGP digital signature
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: October status update for Fedora Infrastructure Apprentices

2016-10-03 Thread Patrick Creech
On Sat, 2016-10-01 at 14:50 -0600, Kevin Fenzi wrote:
> You are getting this email because you are in the 'fi-apprentice' group
> in the fedora account system (or are reading this on the
> infrastructure list). 
> 
> Feel free to reply just directly to me, or cc the infrastructure list
> for everyone to see and comment on. 
> 
> https://fedoraproject.org/wiki/Infrastructure_Apprentice
> 
> At the first of every month(or so), I am going to be sending out an
> email like this one. I would like feedback on how things are going for
> you.
> 
> I'd like to ask for everyone to send me a quick reply with the
> following data or anything related you can think of that might help us
> make the apprentice program more useful.
> 
> 0. Whats your fedora account system login?

pcreech17

> 1. Have you logged in and used your fi-apprentice membership to look at
> our machines/setup in the last month? Do you plan to?

Unfortunately not, and definitely plan on doing so!

> 2. Has it helped you decide any area you wish to focus on or contribute
> to more?

Not at this time

> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://pagure.io/fedora-infrastructure/issues?status=Open=easyfix

Not at this time

> 4. Do you still wish to be a member of the group? If not (for whatever
> reason) could you provide any hints to help others down the road?

Definitely!

> 5. Is there any help or communication or ideas you have that would help
> you do any of the above?

Nope

> 6. What do you find to be the hardest part of getting involved?
> Finding things to work on? Getting attention from others to help you?
> Finding tickets in your interest area? 

Finding the time right now.

> 7. Have you been able to make any weekly irc meetings? Do you find them
> helpful or interesting? 

Yes, and both!

> 8. Have you logged into our Gobby instance and read/seen/added to our
> meeting agenda? https://fedoraproject.org/wiki/Gobby

Not recently

> 9. Whats your favorite Halloween food?
> https://en.wikipedia.org/wiki/Halloween#Food

Buckets full of candy! 

> Any other general feedback is also quite welcome, including
> improvements to this email, the wiki page, etc.
> 
> Any folks I do not hear from in the next week will be removed from the
> group. (Note that it's easy to be readded when you have time or
> whatever and it's nothing at all personal, we just want to keep the
> group up to date with active folks).
> 
> Thanks, and looking forward to your feedback!
> 
> kevin
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org

signature.asc
Description: This is a digitally signed message part
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: Freeze break request: Fix blocker bug proposal

2016-10-03 Thread Stephen John Smoogen
+1 this looks good.

On 3 October 2016 at 13:29, Tim Flink  wrote:
> There was an issue reported last week about using the blockerbugs app
> to propose new blocker bugs.
>
> It turned out to be a simple fix and a new build has been deployed to
> stg.
>
> Can I get +1s to update production blockerbugs? The change to the app
> itself is:
>
> https://git.fedorahosted.org/cgit/blockerbugs.git/commit/?id=f3fd68156be72bad79eb87b4e4380c2c355a40f3
>
>
> Tim
>
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org
>



-- 
Stephen J Smoogen.
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: Freeze break request: Fix blocker bug proposal

2016-10-03 Thread Pierre-Yves Chibon
On Mon, Oct 03, 2016 at 11:29:12AM -0600, Tim Flink wrote:
> There was an issue reported last week about using the blockerbugs app
> to propose new blocker bugs.
> 
> It turned out to be a simple fix and a new build has been deployed to
> stg.
> 
> Can I get +1s to update production blockerbugs? The change to the app
> itself is:
> 
> https://git.fedorahosted.org/cgit/blockerbugs.git/commit/?id=f3fd68156be72bad79eb87b4e4380c2c355a40f3

+1 for me

Pierre


signature.asc
Description: PGP signature
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Freeze break request: Fix blocker bug proposal

2016-10-03 Thread Tim Flink
There was an issue reported last week about using the blockerbugs app
to propose new blocker bugs.

It turned out to be a simple fix and a new build has been deployed to
stg.

Can I get +1s to update production blockerbugs? The change to the app
itself is:

https://git.fedorahosted.org/cgit/blockerbugs.git/commit/?id=f3fd68156be72bad79eb87b4e4380c2c355a40f3


Tim


pgp2zlgnaPDki.pgp
Description: OpenPGP digital signature
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: [PATCH] use a lock file for the atomic continuous composes.

2016-10-03 Thread Dennis Gilmore
On Monday, October 3, 2016 7:36:58 AM CDT Patrick Uiterwijk wrote:
> +1
> 
> On Mon, Oct 3, 2016 at 2:10 AM, Kevin Fenzi  wrote:
> > Yeah, seems like it should be fine. +1
> > 
> > kevin
> > 
> > ___
> > infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> > To unsubscribe send an email to
> > infrastructure-le...@lists.fedoraproject.org
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org

applied thanks

Dennis

signature.asc
Description: This is a digitally signed message part.
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: October status update for Fedora Infrastructure Apprentices

2016-10-03 Thread Personal (open)
 

On 01.10.2016 20:50, Kevin Fenzi wrote: 

> You are getting this email because you are in the 'fi-apprentice' group
> in the fedora account system (or are reading this on the
> infrastructure list). 
> 
> Feel free to reply just directly to me, or cc the infrastructure list
> for everyone to see and comment on. 
> 
> https://fedoraproject.org/wiki/Infrastructure_Apprentice [1]
> 
> At the first of every month(or so), I am going to be sending out an
> email like this one. I would like feedback on how things are going for
> you.
> 
> I'd like to ask for everyone to send me a quick reply with the
> following data or anything related you can think of that might help us
> make the apprentice program more useful.
> 
> 0. Whats your fedora account system login?
> 
> linuxmodder
> 
> 1. Have you logged in and used your fi-apprentice membership to look at
> our machines/setup in the last month? Do you plan to?
> 
> No, having some hardware issues, logins across board have been limited lately.
> 
> 2. Has it helped you decide any area you wish to focus on or contribute
> to more?
> 
> Still wanting to help 
> 
> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://pagure.io/fedora-infrastructure/issues?status=Open=easyfix [2]
> 
> no, see #1
> 
> 4. Do you still wish to be a member of the group? If not (for whatever
> reason) could you provide any hints to help others down the road?
> 
> Absolutely
> 
> 5. Is there any help or communication or ideas you have that would help
> you do any of the above?
> 
> Not really
> 
> 6. What do you find to be the hardest part of getting involved?
> Finding things to work on? Getting attention from others to help you?
> Finding tickets in your interest area? 
> 
> time, sadly real life hardly allows for steady balance :)
> 
> 7. Have you been able to make any weekly irc meetings? Do you find them
> helpful or interesting? 
> 
> no, again see #1
> 
> 8. Have you logged into our Gobby instance and read/seen/added to our
> meeting agenda? https://fedoraproject.org/wiki/Gobby [3]
> 
> ""
> 
> 9. Whats your favorite Halloween food?
> https://en.wikipedia.org/wiki/Halloween#Food [4]
> 
> Not really a holiday I do much with, but I enjoy the joy that is often 
> surrounding it (at least in my family, not everyone has that joy I know)
> 
> Any other general feedback is also quite welcome, including
> improvements to this email, the wiki page, etc.
> 
> Plan to write down some once normal communication is obtained.
> 
> Any folks I do not hear from in the next week will be removed from the
> group. (Note that it's easy to be readded when you have time or
> whatever and it's nothing at all personal, we just want to keep the
> group up to date with active folks).
> 
> Thanks, and looking forward to your feedback!
> 
> kevin

-- 

Corey W Sheldon
ph: +1 (310).909.7672
0x8B4E89435A88E539 0x59276298D2264944

Freelance IT Consultant, Multi-Discipline Tutor
Fedora AmbaNA (linuxmodder)
Ameridea LLC Founder, President

Find me elsewhere:
https://gist.github.com/linux-modder/ac5dc6fa211315c633c9

"One must never underestimate the power of boredom...from which
creativity and laziness are borne, which can spark great works of chaos
and genius." --Anonymous

"Any man willing to retreat freedom for security is deserving of
neither." (Pp) -- Benjamin Franklin. 

This document, including attachments, is intended for the person or
company named and contains confidential and/or legally privileged
information. Unauthorized disclosure, copying or use of this information
may be unlawful and is prohibited. If you are not the intended
recipient, please destroy this message and notify the sender.
 

Links:
--
[1] https://fedoraproject.org/wiki/Infrastructure_Apprentice
[2]
https://pagure.io/fedora-infrastructure/issues?status=Opentags=easyfix
[3] https://fedoraproject.org/wiki/Gobby
[4] https://en.wikipedia.org/wiki/Halloween#Food
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: October status update for Fedora Infrastructure Apprentices

2016-10-03 Thread Sachin S. Kamath
On Sun, Oct 2, 2016, 2:20 AM Kevin Fenzi  wrote:

> You are getting this email because you are in the 'fi-apprentice' group
> in the fedora account system (or are reading this on the
> infrastructure list).
>
> Feel free to reply just directly to me, or cc the infrastructure list
> for everyone to see and comment on.
>
> https://fedoraproject.org/wiki/Infrastructure_Apprentice
>
> At the first of every month(or so), I am going to be sending out an
> email like this one. I would like feedback on how things are going for
> you.
>
> I'd like to ask for everyone to send me a quick reply with the
> following data or anything related you can think of that might help us
> make the apprentice program more useful.
>
> 0. Whats your fedora account system login?
>

skamath

>
> 1. Have you logged in and used your fi-apprentice membership to look at
> our machines/setup in the last month? Do you plan to?
>

Not this month.

>
> 2. Has it helped you decide any area you wish to focus on or contribute
> to more?
>

Yes.

>
> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://pagure.io/fedora-infrastructure/issues?status=Open=easyfix


No.

>
>
>
> 4. Do you still wish to be a member of the group? If not (for whatever
> reason) could you provide any hints to help others down the road?
>

Of course, yes.

>
> 5. Is there any help or communication or ideas you have that would help
> you do any of the above?
>

Not at the moment.

>
> 6. What do you find to be the hardest part of getting involved?
> Finding things to work on? Getting attention from others to help you?
> Finding tickets in your interest area?
>

Timezones.

>
> 7. Have you been able to make any weekly irc meetings? Do you find them
> helpful or interesting?
>
I'm been missing out on them, will catch up soon.

>
> 8. Have you logged into our Gobby instance and read/seen/added to our
> meeting agenda? https://fedoraproject.org/wiki/Gobby


No

>
>
> 9. Whats your favorite Halloween food?
> https://en.wikipedia.org/wiki/Halloween#Food


No Halloween back here :(

>
>
> Any other general feedback is also quite welcome, including
> improvements to this email, the wiki page, etc.
>
> Any folks I do not hear from in the next week will be removed from the
> group. (Note that it's easy to be readded when you have time or
> whatever and it's nothing at all personal, we just want to keep the
> group up to date with active folks).
>
> Thanks, and looking forward to your feedback!
>
> kevin
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to
> infrastructure-le...@lists.fedoraproject.org
>
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: October status update for Fedora Infrastructure Apprentices

2016-10-03 Thread Justin W. Flory

On 10/01/2016 04:50 PM, Kevin Fenzi wrote:

You are getting this email because you are in the 'fi-apprentice' group
in the fedora account system (or are reading this on the
infrastructure list).

Feel free to reply just directly to me, or cc the infrastructure list
for everyone to see and comment on.

https://fedoraproject.org/wiki/Infrastructure_Apprentice

At the first of every month(or so), I am going to be sending out an
email like this one. I would like feedback on how things are going for
you.

I'd like to ask for everyone to send me a quick reply with the
following data or anything related you can think of that might help us
make the apprentice program more useful.

0. Whats your fedora account system login?



jflory7


1. Have you logged in and used your fi-apprentice membership to look at
our machines/setup in the last month? Do you plan to?



Yes.


2. Has it helped you decide any area you wish to focus on or contribute
to more?



I've been focused on sysadmin-badges for the most part, and feel that I 
am best to remain there for now. :)



3. Have you looked at or been able to work on any of the fi-apprentice
'easyfix' tickets?
https://pagure.io/fedora-infrastructure/issues?status=Open=easyfix



Not recently, most due to a lack of time.


4. Do you still wish to be a member of the group? If not (for whatever
reason) could you provide any hints to help others down the road?



Yes (if it is still necessary for me now, not sure).


5. Is there any help or communication or ideas you have that would help
you do any of the above?



None at the moment!


6. What do you find to be the hardest part of getting involved?
Finding things to work on? Getting attention from others to help you?
Finding tickets in your interest area?



Mostly an issue with a balance of time between daily commitments and 
diving in and trying to learn something entirely new.



7. Have you been able to make any weekly irc meetings? Do you find them
helpful or interesting?



Usually, yes. :)


8. Have you logged into our Gobby instance and read/seen/added to our
meeting agenda? https://fedoraproject.org/wiki/Gobby



Yes!


9. Whats your favorite Halloween food?
https://en.wikipedia.org/wiki/Halloween#Food



Usually anything with peanut butter is yummy to me…


Any other general feedback is also quite welcome, including
improvements to this email, the wiki page, etc.

Any folks I do not hear from in the next week will be removed from the
group. (Note that it's easy to be readded when you have time or
whatever and it's nothing at all personal, we just want to keep the
group up to date with active folks).

Thanks, and looking forward to your feedback!

kevin



___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org



--
Cheers,
Justin W. Flory
jflo...@gmail.com



signature.asc
Description: OpenPGP digital signature
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: October status update for Fedora Infrastructure Apprentices

2016-10-03 Thread Tiago M . Vieira
> 0. Whats your fedora account system login?
> 
tiagovieira

> 1. Have you logged in and used your fi-apprentice membership to look at
> our machines/setup in the last month? Do you plan to?
> 
No, I haven't. But I plan for this month.

> 2. Has it helped you decide any area you wish to focus on or contribute
> to more?
> 
I haven't decided yet.

> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://pagure.io/fedora-infrastructure/issues?status=Open=easyfix
> 
I was on PTO many days of last month, didn't have a chance to look at.

> 4. Do you still wish to be a member of the group? If not (for whatever
> reason) could you provide any hints to help others down the road?
> 
yes, definitely.

> 5. Is there any help or communication or ideas you have that would help
> you do any of the above?
> 
no

> 6. What do you find to be the hardest part of getting involved?
> Finding things to work on? Getting attention from others to help you?
> Finding tickets in your interest area? 
>
Maybe finding tickets in my area of interest.

> 7. Have you been able to make any weekly irc meetings? Do you find them
> helpful or interesting? 
> 
Not in the last two or three weeks. I plan to attend in the next few
weeks.

> 8. Have you logged into our Gobby instance and read/seen/added to our
> meeting agenda? https://fedoraproject.org/wiki/Gobby
> 
Yes, I've done it before.

> 9. Whats your favorite Halloween food?
> https://en.wikipedia.org/wiki/Halloween#Food
> 
Bonfire toffee and caramel apples! Booo! 

> Any other general feedback is also quite welcome, including
> improvements to this email, the wiki page, etc.
> 
No comments.

-- 
Tiago M. Vieira, RHCE
fingerprint = 2525 D9C5 A152 54C0 575F 102E 2CB8 A45A E245 073D


signature.asc
Description: PGP signature
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: October status update for Fedora Infrastructure Apprentices

2016-10-03 Thread Kiran Mathews
On Sat, Oct 1, 2016 at 10:50 PM, Kevin Fenzi  wrote:

> You are getting this email because you are in the 'fi-apprentice' group
> in the fedora account system (or are reading this on the
> infrastructure list).
>
> Feel free to reply just directly to me, or cc the infrastructure list
> for everyone to see and comment on.
>
> https://fedoraproject.org/wiki/Infrastructure_Apprentice
>
> At the first of every month(or so), I am going to be sending out an
> email like this one. I would like feedback on how things are going for
> you.
>
> I'd like to ask for everyone to send me a quick reply with the
> following data or anything related you can think of that might help us
> make the apprentice program more useful.
>
> 0. Whats your fedora account system login?
>
>
warlock20


> 1. Have you logged in and used your fi-apprentice membership to look at
> our machines/setup in the last month? Do you plan to?
>
>
Yes

2. Has it helped you decide any area you wish to focus on or contribute
> to more?
>
>
Yes


> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://pagure.io/fedora-infrastructure/issues?status=Open=easyfix
>
>
Not yet


> 4. Do you still wish to be a member of the group? If not (for whatever
> reason) could you provide any hints to help others down the road?
>
> Yes


> 5. Is there any help or communication or ideas you have that would help
> you do any of the above?
>
>
No


> 6. What do you find to be the hardest part of getting involved?
> Finding things to work on? Getting attention from others to help you?
> Finding tickets in your interest area?
>
>
Finding tickets in the interest area was bit difficult in the beginning but
once we understand the struct, it looks much better


> 7. Have you been able to make any weekly irc meetings? Do you find them
> helpful or interesting?
>
>
Sure


> 8. Have you logged into our Gobby instance and read/seen/added to our
> meeting agenda? https://fedoraproject.org/wiki/Gobby
>
>
Yes


> 9. Whats your favorite Halloween food?
> https://en.wikipedia.org/wiki/Halloween#Foo
> 


Halloween cake 


> Any other general feedback is also quite welcome, including
> improvements to this email, the wiki page, etc.
>
> Any folks I do not hear from in the next week will be removed from the
> group. (Note that it's easy to be readded when you have time or
> whatever and it's nothing at all personal, we just want to keep the
> group up to date with active folks).
>
> Thanks, and looking forward to your feedback!
>
> kevin
>
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to infrastructure-le...@lists.fed
> oraproject.org
>
>
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: [PATCH] use a lock file for the atomic continuous composes.

2016-10-03 Thread Patrick Uiterwijk
+1

On Mon, Oct 3, 2016 at 2:10 AM, Kevin Fenzi  wrote:
> Yeah, seems like it should be fine. +1
>
> kevin
>
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org
>
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


[release] ircb: 0.3.0

2016-10-03 Thread Sayan Chowdhury

0.3.0
-

Pull Requests

- (@rtnpro) #51, Implement basic API server for ircb
  https://github.com/waartaa/ircb/pull/51
- (@slick666)   #53, Changed update method to have immutable arguments.
  https://github.com/waartaa/ircb/pull/53
- (@sayanchowdhury) #55, Add default value to Network.status
  https://github.com/waartaa/ircb/pull/55
- (@slick666)   #57, Load ircb data from file
  https://github.com/waartaa/ircb/pull/57
- (@sayanchowdhury) #59, Implement logging, unified import layout
  https://github.com/waartaa/ircb/pull/59
- (@rtnpro) #68, Implement logstore plugin
  https://github.com/waartaa/ircb/pull/68
- (@rtnpro) #70, Realtime publishers
  https://github.com/waartaa/ircb/pull/70
- (@sayanchowdhury) #72, Fix the NetworkStore.create() to use the proper 
arguments
  https://github.com/waartaa/ircb/pull/72
- (@rtnpro) #76, Forward sent channel messages for a bot client to it's 
siblings.
  https://github.com/waartaa/ircb/pull/76
- (@rtnpro) #78, Allow running bouncer server with SSL. #77
  https://github.com/waartaa/ircb/pull/78
- (@sayanchowdhury) #56, Implement IDENT server.
  https://github.com/waartaa/ircb/pull/56
- (@rtnpro) #79, Allinone run now runs web server as well.
  https://github.com/waartaa/ircb/pull/79
- (@farhaanbukhsh)  #80, Readdme fix
  https://github.com/waartaa/ircb/pull/80
- (@farhaanbukhsh)  #83, Fix readme for development
  https://github.com/waartaa/ircb/pull/83
- (@rtnpro) #84, Cli verbose option
  https://github.com/waartaa/ircb/pull/84
- (@rtnpro) #85, Cli fix allinone
  https://github.com/waartaa/ircb/pull/85
- (@sayanchowdhury) #86, Change the filetype of the CHANGELOG file
  https://github.com/waartaa/ircb/pull/86
- (@sayanchowdhury) #87, Update the MANIFEST.in file
  https://github.com/waartaa/ircb/pull/87
- (@sayanchowdhury) #88, Fix the license classifier in setup.py
  https://github.com/waartaa/ircb/pull/88

Commits

- 91f4d9fd8 Added to_dict() method to models.
  https://github.com/waartaa/ircb/commit/91f4d9fd8
- 0dbd9d51b Zeromq based distributed dispatcher.
  https://github.com/waartaa/ircb/commit/0dbd9d51b
- 97122e7f9 Represent model instances as dict in store response.
  https://github.com/waartaa/ircb/commit/97122e7f9
- ebf79a247 Deserialize dicts in store response to model instances in 
storeclient.
  https://github.com/waartaa/ircb/commit/ebf79a247
- 5b5bfbaad Return ChoiceField's code in serialized model data.
  https://github.com/waartaa/ircb/commit/5b5bfbaad
- 7c2bd0568 Allow locks and enqueuing messages in dispatcher.
  https://github.com/waartaa/ircb/commit/7c2bd0568
- 1d54c7187 Sync and register storeclient subscribers to store publisher.
  https://github.com/waartaa/ircb/commit/1d54c7187
- c58010396 Updated README.
  https://github.com/waartaa/ircb/commit/c58010396
- 363ed45b6 Added missing run.py in cli module.
  https://github.com/waartaa/ircb/commit/363ed45b6
- f48bdd976 Connect to IRC when status of NetworkStore is set to '0' (connect).
  https://github.com/waartaa/ircb/commit/f48bdd976
- 6dd53ab28 Fix registering first client to bot
  https://github.com/waartaa/ircb/commit/6dd53ab28
- 6eb6c9eaa Initialize dispatcher for storeclient for CLI.
  https://github.com/waartaa/ircb/commit/6eb6c9eaa
- 0269e778f Disconnect bot when network status set to '2'.
  https://github.com/waartaa/ircb/commit/0269e778f
- bd7f9ae68 Added list, connect, disconnect commands for ircb networks.
  https://github.com/waartaa/ircb/commit/bd7f9ae68
- 8ca1d5598 Don't run process_queue in Dispatcher as a long running task.
  https://github.com/waartaa/ircb/commit/8ca1d5598
- 9fd8cf5c9 Speed dispatcher init process.
  https://github.com/waartaa/ircb/commit/9fd8cf5c9
- 2d89224c3 Use loop.run_forever() to run dispatcher server.
  https://github.com/waartaa/ircb/commit/2d89224c3
- 0f83f99b1 Don't keep redis connection open in dispatcher.
  https://github.com/waartaa/ircb/commit/0f83f99b1
- 3c7695da0 Allow re connecting a disconnected bot.
  https://github.com/waartaa/ircb/commit/3c7695da0
- 2503ac2d0 Prevent race condition when registering subscribers to stores.
  https://github.com/waartaa/ircb/commit/2503ac2d0
- af24973b4 Scrap previous flask web app.
  https://github.com/waartaa/ircb/commit/af24973b4
- 5273a3282 Allow authenticating a user from stores.
  https://github.com/waartaa/ircb/commit/5273a3282
- 1b03583f3 Initial work on web API.
  https://github.com/waartaa/ircb/commit/1b03583f3
- 160f16218 Use aiohttp_auth to improve Sign{In,Out} API for user.
  https://github.com/waartaa/ircb/commit/160f16218
- e48a9f777 Added new requirements.
  https://github.com/waartaa/ircb/commit/e48a9f777
- 01286e0dd Implement auth_required decorator and SignoutView.
  https://github.com/waartaa/ircb/commit/01286e0dd
- a24b2d5c2 Allow storclient stores to list available fields.
  https://github.com/waartaa/ircb/commit/a24b2d5c2
- a0160060c Added base web Views for ircb with some utilities: