Meeting Agenda Item: Introduction ali elkhalidi

2015-03-19 Thread Ali Khalidi
I'm ali elkhalidi, dotEast2015 on irc, a SysAdmin from Saudi Arabia and I
am interested in assisting the Fedora Project. I've worked as a Linux
systems engineer and administrator for a long time, small-Med, enterprise
and public environments. I'm interested in helping out with administration
to keep my skills sharp and build experience working in large and diverse
projects such as Fedora.


cheers,

Ali
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/infrastructure

Announcing DogTag test instance availability

2015-04-23 Thread Ali Khalidi
Hi everyone,

An instance of DogTag 10.1.2 is currently available at 209.132.184.223.

The instance is running a CA for fedoraproject.org

a miniHowTO is here:
https://doteast.fedorapeople.org/projects/dogtag/dogtag-miniHOWTO.txt

We're in the process of fleshing-out a list of testing
scenarios/requirements on how to integrate this within
fedora-infrastructure (fedora-cert, etc.) and explore if its going to
benefit us.

So, if you think this will touch your work/system, benefit it, we would
very much like to hear your thoughts.


dotEast2015,
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/infrastructure

Re: Announcing DogTag test instance availability

2015-04-26 Thread Ali Khalidi
On Fri, Apr 24, 2015 at 7:09 PM, Kevin Fenzi  wrote:
>
> On Thu, 23 Apr 2015 22:01:06 +0300
> Ali Khalidi  wrote:
>
> > Hi everyone,
> >
> > An instance of DogTag 10.1.2 is currently available at
> > 209.132.184.223.
>
> Cool. Thanks for setting this up!
>
> > The instance is running a CA for fedoraproject.org
> >
> > a miniHowTO is here:
> > https://doteast.fedorapeople.org/projects/dogtag/dogtag-miniHOWTO.txt
>
> Looks pretty simple to install actually. Much better than I was
> fearing.
>
> > We're in the process of fleshing-out a list of testing
> > scenarios/requirements on how to integrate this within
> > fedora-infrastructure (fedora-cert, etc.) and explore if its going to
> > benefit us.
> >
> > So, if you think this will touch your work/system, benefit it, we
> > would very much like to hear your thoughts.
>
> So, here's our current use cases for ssl certs:
>
> Primary: Koji build system
>
>   fedora-cert is the command line tool to validate and get a new cert.
>
>   Anytime a cert is issued to a user, all previous certs for that user
>   are revoked.
>
>   certs are good for 6 months.
>
>   Additionally we have to issue certs to all the koji builders (as
>   thats how they also authenticate to the hub).
>
>   I'm hazy on if the koji hub needs just to validate certs are signed
>   by the right ca, or if it needs anything more. Perhaps Dennis can
>   chime in here.
>
> So, the questions here:
I'll answer these questions from the perspective of having two
distinct system, then go into measures of integrating the two systems.

> 1. can we interface dogtag to fedora-cert?

Looking at FAS code (both client and server), it looks that
fedora-cert primary depends on FAS server to manage the cycle of
issuing, validating, and revoking user certificates. This brings the
advantage of isolating and abstracting account management
(authentication and authorization) and services (cert issue) from the
client, and consolidating it to where the user database resides.

First, the account database:

FAS uses postgresql, while dogtag "depends" on 389-ds. dogtag uses the
directory to store accounts and uses it for authorizations.


Now, given that we're using FAS as the interface system to the users,
the task of certificate management now becomes FAS/dogtag interaction.
Additionally, since we're using FAS for authentication and
authorization, then this minimizes authentication and authorization
requirement to that of a single account that represents FAS, enabling
it to perform its operations of cert management.

dogtag has three levels of privileges when it comes to our
requirements (there are others, but I'm simplifying matters) : Admin,
Agent, and user. the one or interest, and I choose in my testing was
an Agent. with this privilege, FAS can authenticate to dogtag, and
submit cert enrollment, revoke, renew, and validate (does not need
authorization actually) requests on behalf of users and they get
auto-approved.

So, to summarize, I suppose that interfacing involves modifying FAS
rather than fedora-cert. and looking at FAS code, it seems very doable
using the interfaces provided by dogtag to do so: cli tools, REST API,
and python stubs. even for cert validation using OCSP, which voids the
use of CRLs altogether.

> 2. Can we set certs to expire after 6 months?

in short, yes, this comes out of the box for user certificates.
Moreover, one can tailor the certificate as he pleases (validity
period for this aspect, as well as others) using certificate profiles
and their constrains.

> 3. Can we make dogtag only allow one valid cert at a time for a user?

Yup. FAS uses openssl index file to track certificates. dogtag will be
used as a service to search for the user certificate and revoke/renew
accordingly.

> 4. Can we issue certs to arbitrary names like 
> buildvm-1.phx2.fedoraproject.org?

if you mean by arbitrary, SANs (SubjectAltName extentions) then yes;
also available by default for user certificates, and I don't see why
it can not be added to a server issued certificate.

>
> Secondary use cases:
>
> Currently we have 2 things that use their own CA/Cert setup, fedmsg and
> openvpn.
>
> Does dogtag let you do multiple CAs? I'm not sure we would want these
> to be under the main fedora one, but perhaps thats ok. I'm not sure if
> there's really that much advantage to moving these from the current
> system, but still pondering on the idea.

Well, the way I understand CAs is that they are hierarchical in
nature. they establish a "linage" if so to speak. So, if your question
is about running multiple CAs in the same instance, then I guess no.
But you can have a root CA and a 

ansible csi group vars - dns

2015-10-21 Thread Ali Khalidi
infra -

here is the diffs for csi vars for group: dns

applicable when we come out of freez.

diff --git a/inventory/group_vars/dns b/inventory/group_vars/dns
index 17da9d0..db01b32 100644
--- a/inventory/group_vars/dns
+++ b/inventory/group_vars/dns
@@ -16,3 +16,7 @@ nrpe_procs_warn: 300
 nrpe_procs_crit: 500

 sudoers: "{{ private }}/files/sudo/sysadmin-dns"
+
+csi_security_category: High
+csi_primary_contact: Fedora Admins - ad...@fedoraproject.org
+csi_purpose: Domain Name Service

diff --git a/inventory/host_vars/ns02.fedoraproject.org
b/inventory/host_vars/ns02.fedoraproject.org
index ec29b7e..ffc9479 100644
--- a/inventory/host_vars/ns02.fedoraproject.org
+++ b/inventory/host_vars/ns02.fedoraproject.org
@@ -15,3 +15,19 @@ datacenter: ibiblio

 ks_url: http://209.132.181.6/repo/rhel/ks/kvm-rhel-7-ext
 ks_repo: http://209.132.181.6/repo/rhel/RHEL7-x86_64/
+
+
+csi_relationship: |
+
+ns02 is a master dns server.
+It serves about every domain under fedoraproject, fedo*, as well
as others, both forward and reverse.
+
+* This host relies on:
+- The virthost it's hosted on (ibiblio03.fedoraproject.org)
+- batcave for dns git and keys
+- connectivity to maxmind to create geoIP dns acl
+
+* Things that rely on this host:
+- The Internet/Community to resolve everything related to fedora
and reverse-IP for allocated subnets
+- If this host is down, dns queries will slow down by the portion
of this host to the total name servers responsible for the same domain
set.
+- secodary/slave dns servers
diff --git a/inventory/host_vars/ns03.phx2.fedoraproject.org
b/inventory/host_vars/ns03.phx2.fedoraproject.org
index 4515d5e..669b5ff 100644
--- a/inventory/host_vars/ns03.phx2.fedoraproject.org
+++ b/inventory/host_vars/ns03.phx2.fedoraproject.org
@@ -10,3 +10,18 @@ ansible_ssh_host: ns03.phx2.fedoraproject.org

 vmhost: virthost21.phx2.fedoraproject.org
 datacenter: phx2
+
+csi_relationship: |
+
+ns03 is a master dns server.
+It serves about every domain under fedoraproject, fedo*, as well
as others, both forward and reverse.
+
+* This host relies on:
+- The virthost it's hosted on (virthost21.phx2.fedoraproject.org)
+- batcave for dns git and keys
+- connectivity to maxmind to create geoIP dns acl
+
+* Things that rely on this host:
+- The Internet/Community to resolve everything related to fedora
and reverse-IP for allocated subnets
+- If this host is down, dns queries will slow down by the portion
of this host to the total name servers responsible for the same domain
set.
+- secodary/slave dns servers
diff --git a/inventory/host_vars/ns04.phx2.fedoraproject.org
b/inventory/host_vars/ns04.phx2.fedoraproject.org
index 9c72ca9..1a4089f 100644
--- a/inventory/host_vars/ns04.phx2.fedoraproject.org
+++ b/inventory/host_vars/ns04.phx2.fedoraproject.org
@@ -10,3 +10,18 @@ ansible_ssh_host: ns04.phx2.fedoraproject.org

 vmhost: virthost15.phx2.fedoraproject.org
 datacenter: phx2
+
+csi_relationship: |
+
+ns04 is a master dns server.
+It serves about every domain under fedoraproject, fedo*, as well
as others, both forward and reverse.
+
+* This host relies on:
+- The virthost it's hosted on (virthost15.phx2.fedoraproject.org)
+- batcave for dns git and keys
+- connectivity to maxmind to create geoIP dns acl
+
+* Things that rely on this host:
+- The Internet/Community to resolve everything related to fedora
and reverse-IP for allocated subnets
+- If this host is down, dns queries will slow down by the portion
of this host to the total name servers responsible for the same domain
set.
+- secodary/slave dns servers
diff --git a/inventory/host_vars/ns05.fedoraproject.org
b/inventory/host_vars/ns05.fedoraproject.org
index 3955f44..e02f9a9 100644
--- a/inventory/host_vars/ns05.fedoraproject.org
+++ b/inventory/host_vars/ns05.fedoraproject.org
@@ -12,3 +12,18 @@ postfix_group: vpn

 vmhost: internetx01.fedoraproject.org
 datacenter: internetx
+
+csi_relationship: |
+
+ns05 is a master dns server.
+It serves about every domain under fedoraproject, fedo*, as well
as others, both forward and reverse.
+
+* This host relies on:
+- The virthost it's hosted on (internetx01.fedoraproject.org)
+- batcave for dns git and keys
+- connectivity to maxmind to create geoIP dns acl
+
+* Things that rely on this host:
+- The Internet/Community to resolve everything related to fedora
and reverse-IP for allocated subnets
+- If this host is down, dns queries will slow down by the portion
of this host to the total name servers responsible for the same domain
set.
+- secodary/slave dns servers
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/infrastructure@lists.fedoraproject.org


Re: ansible csi group vars - dns

2015-11-04 Thread Ali Khalidi
nsible for the same domain
set.
+- secodary/slave dns servers
-- 

On Wed, Nov 4, 2015 at 6:29 PM, Kevin Fenzi  wrote:
> On Wed, 21 Oct 2015 17:41:31 +0300
> Ali Khalidi  wrote:
>
>> infra -
>>
>> here is the diffs for csi vars for group: dns
>>
>> applicable when we come out of freez.
>
> Now that we are out of freeze I went to apply this, but couldn't get it
> to apply cleanly. ;( It looks like your mailer wrapped the lines?
>
> Can you try rebasing the pactch and resending it?
>
> Thanks!
>
> kevin
>
>
>
> ___
> infrastructure mailing list
> infrastructure@lists.fedoraproject.org
> http://lists.fedoraproject.org/admin/infrastructure@lists.fedoraproject.org
>
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/infrastructure@lists.fedoraproject.org


Re: November status update for Fedora Infrastructure Apprentices

2015-11-04 Thread Ali Khalidi
On Wed, Nov 4, 2015 at 11:37 PM, Kevin Fenzi  wrote:
> Greetings.
>
> 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?

doteast

>
> 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 think we're getting there

>
> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://fedorahosted.org/fedora-infrastructure/report/14

yes

>
> 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?

involving apprentice in csi group_vars is a great learning idea. it
helps getting to know whats there, and drives the sense for the
organization of infra. 1++

>
> 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?

1,3

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

yes

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

yes

>
> 9. Did you know that we are having an apprentice work day on November
> 18th? Will you be able to stop by and talk with us then and get more
> involved?

yes, looking forward to it.

>
> 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
> http://lists.fedoraproject.org/admin/infrastructure@lists.fedoraproject.org
>
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/infrastructure@lists.fedoraproject.org


Re: ansible csi group vars - dns

2015-11-05 Thread Ali Khalidi
placed the patched under /tmp/doteast

Thanks

On Thu, Nov 5, 2015 at 6:22 PM, Kevin Fenzi  wrote:
> On Wed, 4 Nov 2015 21:58:18 +0300
> Ali Khalidi  wrote:
>
>> unless this works, I guess I need to attach the patch.
>
> Yeah, it's still getting line wrapped...
>
> :(
>
> So, I guess make the patch and add it as an attachment?
>
> Or alternately, just put it in /tmp on batcave and let me know the
> name? ;)
>
> kevin
>
> ___
> infrastructure mailing list
> infrastructure@lists.fedoraproject.org
> http://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org
>
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org


csi group vars - nagios

2015-11-09 Thread Ali Khalidi
diff --git a/inventory/group_vars/nagios b/inventory/group_vars/nagios
index 70763e7..5911ef3 100644
--- a/inventory/group_vars/nagios
+++ b/inventory/group_vars/nagios
@@ -9,3 +9,6 @@ num_cpus: 2
 tcp_ports: [ 80, 443 ]

 fas_client_groups: sysadmin-noc
+csi_security_category: High
+csi_primary_contact: Fedora Admins - ad...@fedoraproject.org
+csi_purpose: Monitoring system
diff --git a/inventory/host_vars/noc01.phx2.fedoraproject.org
b/inventory/host_vars/noc01.phx2.fedoraproject.org
index 73b10dc..e84bffa 100644
--- a/inventory/host_vars/noc01.phx2.fedoraproject.org
+++ b/inventory/host_vars/noc01.phx2.fedoraproject.org
@@ -14,3 +14,16 @@ udp_ports: ['67','68','69']
 custom_rules: [ '-A INPUT -p tcp -m tcp -s 192.168.1.20 --dport 5666
-j ACCEPT', '-A INPUT -p tcp -m tcp -s 10.5.126.13 --dport 873 -j
ACCEPT', '-A INPUT -p tcp -m tcp -s 192.168.1.59 --dport 873 -j
ACCEPT' ]

 eth0_ip: 10.5.126.41
+csi_relationship: |
+noc01 is the internal monitoring nagios instance to the phx datacenter.
+it is also the dhcp server serving all computing nodes
+
+* This host relies on:
+- the virthost it's hosted on (virthost17.phx2.fedoraproject.org)
+- FAS to authenticate users
+- VPN connectivity
+
+* Things that rely on this host:
+- Infrastructure team to be awair of the infra status. operations
control process will fail
+- if this host is down, it will be difficult to know the status
of infra and provide reactive/proactive support
+- if this host is down, dhcp/bootp leases/renew will fail. pxe
booting will fail as well
diff --git a/inventory/host_vars/noc02.fedoraproject.org
b/inventory/host_vars/noc02.fedoraproject.org
index 8136376..d5f74f0 100644
--- a/inventory/host_vars/noc02.fedoraproject.org
+++ b/inventory/host_vars/noc02.fedoraproject.org
@@ -9,3 +9,15 @@ eth0_ip: 152.19.134.192
 vmhost: ibiblio04.fedoraproject.org
 datacenter: ibiblio
 postfix_group: vpn
+csi_relationship: |
+noc02 is the external monitoring nagios instance.
+
+* This host relies on:
+- the virthost it's hosted on (ibiblio04.fedoraproject.org)
+- FAS to authenticate users
+- VPN connectivity
+
+* Things that rely on this host:
+- Infrastructure team to be awair of the infra status. operations
control process will be affected
+- if this host is down, it will be difficult to know the status
of infra and provide reactive/proactive support
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org


csi group vars - torrent

2015-11-17 Thread Ali Khalidi
diff --git a/inventory/group_vars/torrent b/inventory/group_vars/torrent
index 896df92..2eaafe5 100644
--- a/inventory/group_vars/torrent
+++ b/inventory/group_vars/torrent
@@ -11,3 +11,6 @@ fas_client_groups:
sysadmin-web,torrentadmin,sysadmin-noc,torrent-cc,fi-apprenti

 nrpe_procs_warn: 300
 nrpe_procs_crit: 500
+csi_security_category: Low
+csi_primary_contact: Fedora Admins - ad...@fedoraproject.org
+csi_purpose: Torrent master server for Fedora distribution
diff --git a/inventory/host_vars/torrent01.fedoraproject.org
b/inventory/host_vars/torrent01.fedoraproject.org
index e1a12ab..fccc264 100644
--- a/inventory/host_vars/torrent01.fedoraproject.org
+++ b/inventory/host_vars/torrent01.fedoraproject.org
@@ -15,3 +15,13 @@ postfix_group: vpn

 vmhost: ibiblio03.fedoraproject.org
 datacenter: ibiblio
+csi_relationship: |
+torrent01 is the master torrent server for Fedora releases
+
+* This host relies on:
+- the virthost it's hosted on (ibiblio03.fedoraproject.org)
+- FAS to authenticate users
+- VPN connectivity
+
+* Things that rely on this host:
+- if this host is down, Fedora will lose a release distribution channel
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org


Re: December status update for Fedora Infrastructure Apprentices

2015-12-07 Thread Ali Khalidi
On Thu, Dec 3, 2015 at 11:03 PM, Kevin Fenzi  wrote:
> Greetings.
>
> 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?

doteast

>
> 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://fedorahosted.org/fedora-infrastructure/report/14

yes

>
> 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?

persistence

>
> 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?

the more you get involved with the team, the more you can find
opportunities to contribute.


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

yes, and looking forward for the upcoming one

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

not recently.

>
> 9. Did you know that we are going to be doing a 'technical debt
> cleanup' week on 2016-01-06 to 2016-01-09? See:
> https://fedoraproject.org/wiki/Infrastructure/Debt
> and come join us.

you bet.

>
> 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!

thank you kevin

>
> kevin
>
> ___
> infrastructure mailing list
> infrastructure@lists.fedoraproject.org
> http://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org
>
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org


Re: May status update for Fedora Infrastructure Apprentices

2016-05-04 Thread Ali Khalidi
On Mon, May 2, 2016 at 11:19 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?

doteast

>
> 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?

no

>
> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://fedorahosted.org/fedora-infrastructure/report/14

yes

>
> 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?

nothing now

>
> 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?

1, and 3

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

yes. very interesting

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

not recently.

>
> 9. Do you have any pets? If so, what, if not is there one you want?

No. openstack :)

>
> 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

Thank you.

>
> ___
> infrastructure mailing list
> infrastructure@lists.fedoraproject.org
> http://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org
>
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org


Re: June status update for Fedora Infrastructure Apprentices

2016-06-08 Thread Ali Khalidi
On Wed, Jun 1, 2016 at 8:32 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?

doteast

>
> 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, yes

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

no

>
> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://fedorahosted.org/fedora-infrastructure/report/14

yes

>
> 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, please

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

apprentice office hours seemed to work, how about extending to
homework/assignments?

>
> 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?

3,1,2

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

unfortunately no

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

no

> 9. Is there any movies you are looking forward to in the coming year?
>

starwars

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

nothing I can think of now!

> 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
> https://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org
>
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org


Re: June status update for Fedora Infrastructure Apprentices

2016-07-02 Thread Ali Khalidi
On Sat, Jul 2, 2016 at 1:01 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?

doteast

>
> 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. Yes

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

Not yet

>
> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://fedorahosted.org/fedora-infrastructure/report/14

Will do so

>
> 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?

None I can think of now

>
> 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?

1, and 3

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

No. very interesting

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

No

>
> 9. When was the last time it rained where you are?

Yesterday

>
> 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!

No, Thank you !

>
> kevin
>
> ___
> infrastructure mailing list
> infrastructure@lists.fedoraproject.org
> https://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org
>
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org


Re: Aug status update for Fedora Infrastructure Apprentices

2016-08-07 Thread Ali Khalidi
On Sun, Aug 7, 2016 at 11:01 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?
doteast

>
> 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?
may be once. yea I do

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

>
> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://fedorahosted.org/fedora-infrastructure/report/14
yes

>
> 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, please

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

not off the top my head

>
> 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?
1 and 3

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

not recently

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

no

>
> 9. when was the last plane trip you took?

~ 2 months

>
> 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!

Thank you Kevin

>
> kevin
>
> ___
> infrastructure mailing list
> infrastructure@lists.fedoraproject.org
> https://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org
>
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org


Re: September status update for Fedora Infrastructure Apprentices

2016-09-06 Thread Ali Khalidi
Reply inline

On Tue, Sep 6, 2016 at 12:48 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?

doteast

>
> 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, sort of

>
> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://fedorahosted.org/fedora-infrastructure/report/14

yes

>
> 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, please

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

none I can think of 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?

3

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

yes. very interesting

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

unfortunately, no

>
> 9. What is the furthest place you have ever traveled from your home?

bedroom

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

No. thank you kevin

>
> 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
> https://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org
>
___
infrastructure mailing list
infrastructure@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/infrastructure@lists.fedoraproject.org


Re: October status update for Fedora Infrastructure Apprentices

2016-10-02 Thread Ali Khalidi
On Sat, Oct 1, 2016 at 4: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?

doteast

>
> 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&tags=easyfix

yes

>
> 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?

can't think of any 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?

1 and 3

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

Yes. most helpful and intereseting

>
> 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
>
> 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

Thank you 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: November status update for Fedora Infrastructure Apprentices

2016-11-02 Thread Ali Khalidi
On Wed, Nov 2, 2016 at 3:06 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?

doteast

>
> 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&tags=easyfix

yes

>
> 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?

nothing I can think of now

>
> 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?

3

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

Yes. very helpful and interesting

>
> 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 fall beverage?

coffee

>
> 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: December status update for Fedora Infrastructure Apprentices

2016-12-02 Thread Ali Khalidi
On Thu, Dec 1, 2016 at 7:12 PM, Kevin Fenzi  wrote:
> Ho Ho Ho. Happy holidays to everyone!
>
> 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?

doteast

>
> 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&tags=easyfix

yes

>
> 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?

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?

1 and 3

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

yes, very interesting

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

yes

>
> 9. If you were stranded in a snowed in cabin in the woods, and could
> only have one book or movie or game, what would it be?

gladiator ;)

>
> Any other general feedback is also quite welcome, including
> improvements to this email, the wiki page, etc.
> Note that we recently revamped the getting started and other pages.
> Please do take a minute to re-read them and let me know if they are
> more clear or need further adjustments.
>
> 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

Thank you 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: December status update for Fedora Infrastructure Apprentices

2016-12-15 Thread Ali Khalidi
On Thu, Dec 1, 2016 at 7:12 PM, Kevin Fenzi  wrote:
> Ho Ho Ho. Happy holidays to everyone!
>
> 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?

doteast

>
> 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?

No

>
> 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&tags=easyfix

yes

>
> 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?

not sure

>
> 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?

1 and 3

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

yes

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

yes

>
> 9. If you were stranded in a snowed in cabin in the woods, and could
> only have one book or movie or game, what would it be?

janglebook!?

>
> Any other general feedback is also quite welcome, including
> improvements to this email, the wiki page, etc.
> Note that we recently revamped the getting started and other pages.
> Please do take a minute to re-read them and let me know if they are
> more clear or need further adjustments.
>
> 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

Thank you 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: January status update for Fedora Infrastructure Apprentices

2017-01-03 Thread Ali Khalidi
On Tue, Jan 3, 2017 at 9:48 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?

doteast

>
> 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?

sort of

>
> 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&tags=easyfix

yes

>
> 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?

1,3

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

yes

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

yes

>
> 9. What is your favorite gui application?

browser

>
> Any other general feedback is also quite welcome, including
> improvements to this email, the wiki page, etc.
> Note that we recently revamped the getting started and other pages.
> Please do take a minute to re-read them and let me know if they are
> more clear or need further adjustments.
>
> 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

Thank you 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: February status update for Fedora Infrastructure Apprentices

2017-02-02 Thread Ali Khalidi
On Wed, Feb 1, 2017 at 11:24 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?

doteast

>
> 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?

sort of

>
> 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&tags=easyfix

yes

>
> 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?

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?

3

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

yes, yes

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

yes

>
> 9. What's the best software documentation you have read?

samba :)


>
> Any other general feedback is also quite welcome, including
> improvements to this email, the wiki page, etc.
> Note that we recently revamped the getting started and other pages.
> Please do take a minute to re-read them and let me know if they are
> more clear or need further adjustments.
>
> 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

Thank you nirik

>
> ___
> 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: March status update for Fedora Infrastructure Apprentices

2017-03-02 Thread Ali Khalidi
On Wed, Mar 1, 2017 at 7:29 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?

doteast

>
> 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&tags=easyfix

yes

>
> 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, please

>
> 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?

1,3

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

yes. very helpful

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

not recently

>
> 9. What kinds of things do you look for in projects you contribute to?

discover untouched potentials and strengths of projects

>
> Any other general feedback is also quite welcome, including
> improvements to this email, the wiki page, etc.
> Note that we recently revamped the getting started and other pages.
> Please do take a minute to re-read them and let me know if they are
> more clear or need further adjustments.
>
> 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
Thank you 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: April status update for Fedora Infrastructure Apprentices

2017-04-05 Thread Ali Khalidi
On Mon, Apr 3, 2017 at 2:04 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?

doteast

>
>
> 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. 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&tags=easyfix

yes
>
>
> 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, please.

>
>
> 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?

1, and 3

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

yes. very interesting.

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

no.

>
>
> 9. Have you used any containers in the last week or so?
> (docker, rocket, etc)

no.

>
> Any other general feedback is also quite welcome, including improvements
> to this email, the wiki page, etc. Note that we recently revamped the
> getting started and other pages. Please do take a minute to re-read them
> and let me know if they are more clear or need further adjustments.
>
> 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!

Thank you kevin.

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


Re: May status update for Fedora Infrastructure Apprentices

2017-05-03 Thread Ali Khalidi
On May 3, 2017 1:20 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?

doteast
>
>
> 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&tags=easyfix
>

yes

>
> 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 please

>
> 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?
>

none

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

no, but pushing hard to

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

no

>
> 9. When was the last time you applied updates? (to anything, your
> computer, your phone, your gaming system)
>

bi-weekly

> Any other general feedback is also quite welcome, including improvements
> to this email, the wiki page, etc. Note that we recently revamped the
> getting started and other pages. Please do take a minute to re-read them
> and let me know if they are more clear or need further adjustments.
>

no

> 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

thank you 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: June status update for Fedora Infrastructure Apprentices

2017-06-03 Thread Ali Khalidi
On Thu, Jun 1, 2017 at 7:55 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?

doteast

>
> 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&tags=easyfix

yes

>
> 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, please

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

can't think of any 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?

None

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

No

>
> 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 thing to smell?

flowers ;)

>
> Any other general feedback is also quite welcome, including improvements
> to this email, the wiki page, etc. Note that we recently revamped the
> getting started and other pages. Please do take a minute to re-read them
> and let me know if they are more clear or need further adjustments.
>
> 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

thank you 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: July status update for Fedora Infrastructure Apprentices

2017-07-06 Thread Ali Khalidi
On Jul 3, 2017 10:55 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?

doteast
>
> 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, 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&tags=easyfix
>

yes

> 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, please.

> 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?
>

1,3

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

no,no.

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

no.

> 9. Since it's summer (at least in the northern hemisphere), what is your
> favorite way to cool down in the summer heat?
>

shower.

> Any other general feedback is also quite welcome, including improvements
> to this email, the wiki page, etc. Note that we recently revamped the
> getting started and other pages. Please do take a minute to re-read them
> and let me know if they are more clear or need further adjustments.
>
> 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!

thank you kevin.

>
> 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: Aug status update for Fedora Infrastructure Apprentices

2017-08-03 Thread Ali Khalidi
On Aug 2, 2017 7:46 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?

doteast

>
> 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/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&tags=easyfix
>

yes

> 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, please

> 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?
>

no. 3

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

yes, very interesting, no

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

no

> 9. What are the top 5 commands you run by number? You can get these with
> something like:
>
> history | awk '{print $2}' | sort | uniq -c | sort -nr | head -5
>
> (or something more clever of your own devising)
>

ls, ps, grep, less, find

> Any other general feedback is also quite welcome, including improvements
> to this email, the wiki page, etc. Note that we recently revamped the
> getting started and other pages. Please do take a minute to re-read them
> and let me know if they are more clear or need further adjustments.
>
> 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
> todate with active folks).
>
> Thanks, and looking forward to your feedback!
>
> kevin

Thank you 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

2017-10-02 Thread Ali Khalidi
On Mon, Oct 2, 2017 at 1:27 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?

doteast

>
> 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, 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&tags=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?

Yes, please.

>
> 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?

None.

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

No.

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

No.

>
> 9. What was the last Fedora Badge you were awarded?
> (go to https://badges.fedoraproject.org/ and login and look at your
> history under your profile)

None.

>
> Any other general feedback is also quite welcome, including improvements
> to this email, the wiki page, etc. Note that we recently revamped the
> getting started and other pages. Please do take a minute to re-read them
> and let me know if they are more clear or need further adjustments.
>
> 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
> todate with active folks).
>
> Thanks, and looking forward to your feedback!
>
> kevin

Thank you 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

2017-10-16 Thread Ali Khalidi
> 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?
>

doteast

> 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, 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&tags=easyfix
>

yes

> 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, please!

> 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?
>

none

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

no

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

no

> 9. What was the last Fedora Badge you were awarded?
> (go to https://badges.fedoraproject.org/ and login and look at your
> history under your profile)
>

none

> Any other general feedback is also quite welcome, including improvements
> to this email, the wiki page, etc. Note that we recently revamped the
> getting started and other pages. Please do take a minute to re-read them
> and let me know if they are more clear or need further adjustments.
>
> 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
> todate with active folks).
>
> Thanks, and looking forward to your feedback!
>
> kevin
>
>
>
thank you nirik!
> ___
> 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: November status update for Fedora Infrastructure Apprentices

2017-11-07 Thread Ali Khalidi
On Wed, Nov 1, 2017 at 2:29 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?

doteast

>
> 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, 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&tags=easyfix

yes

>
> 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, please

>
> 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?

none

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

no, yes, no

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

no

>
> 9. What kind of computer are you replying to this email on right now?
> Desktop? Phone? Be as specific or not as you like. :)

desktop

>
> Any other general feedback is also quite welcome, including improvements
> to this email, the wiki page, etc. Note that we recently revamped the
> getting started and other pages. Please do take a minute to re-read them
> and let me know if they are more clear or need further adjustments.
>
> 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
> todate with active folks).
>
> Thanks, and looking forward to your feedback!
>
> kevin

Thank you 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