[Spacewalk-list] Centos-7 kickstart problem

Tomas Lestach tlestach at redhat.com
Mon Jun 27 12:16:48 UTC 2016


repomd.xml issue most probably depends on your setup.

I can download the repomd.xml:

$ wget http://mirror.centos.org/centos/7/os/x86_64/repodata/repomd.xml 
--2016-06-27 14:12:59--  http://mirror.centos.org/centos/7/os/x86_64/repodata/repomd.xml
Resolving mirror.centos.org (mirror.centos.org)... 2604:6600:0:1f::2, 216.172.56.29
Connecting to mirror.centos.org (mirror.centos.org)|2604:6600:0:1f::2|:80... failed: Connection refused.
Connecting to mirror.centos.org (mirror.centos.org)|216.172.56.29|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3735 (3.6K) [text/xml]
Saving to: ‘repomd.xml’

repomd.xml                                                  100%[=========================================================================================================================================>]   3.65K  --.-KB/s    in 0s      

2016-06-27 14:12:59 (287 MB/s) - ‘repomd.xml’ saved [3735/3735]

however, I see the first attempt failed, as ipv6 address was used:

$ wget -6 http://mirror.centos.org/centos/7/os/x86_64/repodata/repomd.xml 
--2016-06-27 14:14:23--  http://mirror.centos.org/centos/7/os/x86_64/repodata/repomd.xml
Resolving mirror.centos.org (mirror.centos.org)... 2605:9000:401:103::2
Connecting to mirror.centos.org (mirror.centos.org)|2605:9000:401:103::2|:80... failed: Connection refused.

Using the ipv4 works as expected:

$ wget -4 http://mirror.centos.org/centos/7/os/x86_64/repodata/repomd.xml 
--2016-06-27 14:14:44--  http://mirror.centos.org/centos/7/os/x86_64/repodata/repomd.xml
Resolving mirror.centos.org (mirror.centos.org)... 65.182.107.60
Connecting to mirror.centos.org (mirror.centos.org)|65.182.107.60|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3735 (3.6K) [text/xml]
Saving to: ‘repomd.xml.1’

repomd.xml.1                                                100%[=========================================================================================================================================>]   3.65K  --.-KB/s    in 0s      

2016-06-27 14:14:45 (231 MB/s) - ‘repomd.xml.1’ saved [3735/3735]


Regards,
--
Tomas Lestach
Red Hat Satellite Engineering, Red Hat


----- Original Message -----
> From: "Harshal Lakare" <harshal.lakare at gmail.com>
> To: spacewalk-list at redhat.com
> Sent: Monday, June 27, 2016 1:52:42 PM
> Subject: Re: [Spacewalk-list] Centos-7 kickstart problem
> 
> 
> 
> 
> 
> 
> Thank You Thomas for replying. But adding @Server with GUI did not
> help also any idea about that that repodata xml error ?
> 
> 
> Regards,
> Harshal Lakare
> 
> 
> 
> 
> ------------------------------
> 
> Message: 3
> Date: Mon, 27 Jun 2016 05:51:16 -0400 (EDT)
> From: Tomas Lestach < tlestach at redhat.com >
> To: spacewalk-list at redhat.com
> Subject: Re: [Spacewalk-list] Centos-7 kickstart problem
> Message-ID:
> <
> 5299284.31752.1467021074929.JavaMail.tlestach at well.usersys.redhat.com
> >
> 
> Content-Type: text/plain; charset="utf-8"
> 
> > Hello,
> > 
> > 
> > I'm facing two issue with my Kickstart based Centos-7.7
> > installation.
> > 
> 
> I suppose Centos-7.7 is a typo. :-)
> 
> > 
> > 1) I want to install "Server with GUI" but whenver i add "@Server
> > with GUI" it give me error at the time of installation. Here is the
> > error
> 
> 
> Does it help, if you specify @"Server with GUI"?
> 
> Regards,
> --
> Tomas Lestach
> Red Hat Satellite Engineering, Red Hat
> 
> 
> > 
> > 
> > Inline images 1
> > 
> > 
> > 
> > 
> > 2) After saying yes to above question installation went successful
> > but when i do yum check-update its gives me below error.
> > 
> > 
> > 
> > [root at rooottooo ~]# yum check-update
> > Loaded plugins: fastestmirror, langpacks, rhnplugin
> > This system is receiving updates from RHN Classic or Red Hat
> > Satellite.
> > base | 3.6 kB 00:00:00
> > extras | 3.4 kB 00:00:00
> > updates | 3.4 kB 00:00:00
> > Loading mirror speeds from cached hostfile
> > * base: centos.mirror.net.in
> > * extras: mirrors.vonline.vn
> > * updates: mirrors.vonline.vn
> > 
> > 
> > 
> > 
> > One of the configured repositories failed (Unknown),
> > and yum doesn't have enough cached data to continue. At this point
> > the only
> > safe thing yum can do is fail. There are a few ways to work "fix"
> > this:
> > 
> > 
> > 1. Contact the upstream for the repository and get them to fix the
> > problem.
> > 
> > 
> > 2. Reconfigure the baseurl/etc. for the repository, to point to a
> > working
> > upstream. This is most often useful if you are using a newer
> > distribution release than is supported by the repository (and the
> > packages for the previous distribution release still work).
> > 
> > 
> > 3. Disable the repository, so yum won't use it by default. Yum will
> > then
> > just ignore the repository until you permanently enable it again or
> > use
> > --enablerepo for temporary usage:
> > 
> > 
> > yum-config-manager --disable <repoid>
> > 
> > 
> > 4. Configure the failing repository to be skipped, if it is
> > unavailable.
> > Note that yum will try to contact the repo. when it runs most
> > commands,
> > so will have to try and fail each time (and thus. yum will be be
> > much
> > slower). If it is a very temporary problem though, this is often a
> > nice
> > compromise:
> > 
> > 
> > yum-config-manager --save
> > --setopt=<repoid>.skip_if_unavailable=true
> > 
> > 
> > failed to retrieve repodata/repomd.xml from centos7-x86_64
> > error was [Errno 14] curl#51 - "Unable to communicate securely with
> > peer: requested domain name does not match the server's
> > certificate."
> > [root at rooottooo ~]#
> > 
> > 
> > 
> > 
> > Is there anything thing wrong i'm doing ?
> > 
> > --
> > 
> > Harshal Lakare
> > 
> > _______________________________________________
> > Spacewalk-list mailing list
> > Spacewalk-list at redhat.com
> > https://www.redhat.com/mailman/listinfo/spacewalk-list
> 
> ------------------------------
> 
> Message: 4
> Date: Mon, 27 Jun 2016 05:58:56 -0400 (EDT)
> From: Tomas Lestach < tlestach at redhat.com >
> To: spacewalk-list at redhat.com
> Subject: Re: [Spacewalk-list] Taskomatic logs deleted
> Message-ID:
> <
> 17831906.31861.1467021533368.JavaMail.tlestach at well.usersys.redhat.com
> >
> 
> Content-Type: text/plain; charset=utf-8
> 
> I do not see any pointers channel-repodata-bunch would be broken.
> 
> And yes, when a certain task starts, it creates appropriate log
> files in /var/log/rhn/tasko/sat/channel-repodata-bunch/ (in this
> case). In case the log file is empty at the end of the run, the
> log file gets deleted automatically.
> 
> Regards,
> --
> Tomas Lestach
> Red Hat Satellite Engineering, Red Hat
> 
> 
> ----- Original Message -----
> > From: "Lo?c Chanel" < loic.chanel at telecomnancy.net >
> > To: spacewalk-list at redhat.com
> > Sent: Monday, June 20, 2016 1:27:42 PM
> > Subject: Re: [Spacewalk-list] Taskomatic logs deleted
> > 
> > 
> > 
> > It seems that taskomatic simply had nothing to do. In this case,
> > the
> > log file is created, but since there is nothing to generate, the
> > file is instantly deleted.
> > 
> > 
> > Regards,
> > 
> > 
> > 
> > 
> > Lo?c
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > Lo?c CHANEL
> > System & virtualization engineer
> > TO - XaaS Ind - Worldline (Villeurbanne, France)
> > 
> > 
> > 2016-06-17 10:38 GMT+02:00 Lo?c Chanel <
> > loic.chanel at telecomnancy.net
> > > :
> > 
> > 
> > 
> > Hi all,
> > 
> > 
> > I have a problem with taskomatic. Since this morning,
> > channel-repodata-bunch generation is KO (as soon as I click on
> > "Single run schedule" it goes to FINISHED) and I can't find any
> > logs. Using lsof, the only thing I can see is that the log file
> > generated by Spacewalk is deleted.
> > 
> > 
> > 
> > lsof -p 35127 | grep log | grep rhn
> > java 35127 root 74w REG 253,5 0 524290
> > /var/log/rhn/tasko/sat/auto-errata-bunch/auto-errata_3735660_out
> > (deleted)
> > java 35127 root 75w REG 253,5 0 16392
> > /var/log/rhn/tasko/sat/channel-repodata-bunch/channel-repodata_3735661_out
> > (deleted)
> > java 35127 root 76w REG 253,5 0 524291
> > /var/log/rhn/tasko/sat/auto-errata-bunch/auto-errata_3735660_err
> > (deleted)
> > 
> > 
> > Is this something any of you experienced ? Any idea on how to get
> > taskomatic to generate repodata again ?
> > 
> > 
> > Thanks,
> > 
> > 
> > 
> > 
> > Lo?c
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > Lo?c CHANEL
> > System & virtualization engineer
> > TO - XaaS Ind - Worldline (Villeurbanne, France)
> > 
> > 
> > _______________________________________________
> > Spacewalk-list mailing list
> > Spacewalk-list at redhat.com
> > https://www.redhat.com/mailman/listinfo/spacewalk-list
> 
> 
> 
> ------------------------------
> 
> Message: 5
> Date: Mon, 27 Jun 2016 09:59:42 +0000
> From: Dan MacDonald < allcoms at gmail.com >
> To: spacewalk-list at redhat.com
> Subject: Re: [Spacewalk-list] Problem Spacewalking CentOS 7 - repo
> groups and treeinfo not found
> Message-ID:
> <CANOoOju-KfjwMUOuvVdhx_fnDoPN09O= tMMugXMeFf3r0G_5kw at mail.gmail.com
> >
> Content-Type: text/plain; charset="utf-8"
> 
> Nobody?
> 
> On Thu, Jun 23, 2016 at 4:26 PM, Dan MacDonald < allcoms at gmail.com >
> wrote:
> 
> > We are running spacewalk 2.3 under CentOS 6. It has been happily
> > deploying
> > CentOS 6 installs for a while but now we'd like to start rolling
> > out CentOS
> > 7. So far, using a vanilla KS file as generated by SW, installation
> > only
> > gets as far as completing the partitioning before we get the error:
> > 
> > "You have specified the group 'Base' should be installed. This
> > group does
> > not exist. Would you like to ignore this group and continue with
> > installation?"
> > 
> > packaging.log contains a number of errors saying that it failed to
> > get the
> > groups for my C7 repos as well as a bunch of 404 errors for
> > downloading the
> > treeinfo for the repos.
> > 
> > Has anyone else got stuck at this point with C7 under SW 2.3? If
> > so, how
> > did you overcome it? I'm presuming C7 should deploy fine under CW
> > 2.3 or
> > were there some C7-related issues that got fixed in 2.4 or 2.5?
> > 
> > My guess would be that the repo paths in the KS file are incorrect
> > but
> > they look almost identical to the paths that work fine for us with
> > CentOS
> > 6. I know the base of cobbler's web dir is /var/www/cobbler but
> > does SW or
> > one of its components have any other dirs that it shares out by
> > default and
> > how are they referenced by SW/cobbler? Working out the correct
> > paths for
> > the repos is tricky when you don't know this and the sites are
> > browsable.
> > 
> > I have tried using a yum repo fix snippet that claims to stop yum
> > using
> > external repos but that didn't make any difference.
> > 
> > In trying to troubleshoot this I discovered there are at least 3
> > different
> > ways to sync your SW repos. I used spacewalk-repo-sync with the
> > --sync-kickstart switch but apparently you can do the same with
> > rhnpush and
> > spacewalk-common-channels? Which is the recommended way?
> > 
> > Those are my main questions right now but I'm certain there is more
> > I've
> > forgot to mention.
> > 
> > Thanks for your help!
> > 
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> https://www.redhat.com/archives/spacewalk-list/attachments/20160627/e8e91b0c/attachment.html
> >
> 
> ------------------------------
> 
> Message: 6
> Date: Mon, 27 Jun 2016 06:03:06 -0400 (EDT)
> From: Tomas Lestach < tlestach at redhat.com >
> To: spacewalk-list at redhat.com
> Subject: Re: [Spacewalk-list] Spacewalk-list Digest, Vol 97, Issue 24
> Message-ID:
> <
> 857067.31937.1467021781370.JavaMail.tlestach at well.usersys.redhat.com
> >
> Content-Type: text/plain; charset=utf-8
> 
> > This has been resolved by editing these parameters in
> > /etc/cobbler/settings
> > 
> > 
> > next_server:
> > redhat_management_server:
> > server:
> 
> I suppose there's something wrong with your Spacewalk installation,
> as these settings are configured by the spacewalk-setup-cobbler
> script
> (run within spacewalk-setup at installation/upgrade time).
> 
> Regards,
> --
> Tomas Lestach
> Red Hat Satellite Engineering, Red Hat
> 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > ----------------------------------------------------------------------
> > 
> > Message: 1
> > Date: Sun, 19 Jun 2016 11:09:45 +0530
> > From: Harshal Lakare < harshal.lakare at gmail.com >
> > To: spacewalk-list at redhat.com
> > Subject: [Spacewalk-list] Re :Re: spacewalk kickstart failed to
> > resolved hostname
> > Message-ID:
> > <
> > CA+-UEp2NKg6QkQV5vVckGr4uc1G0Jw1oMOS-6xfXO9B3rv4y7A at mail.gmail.com
> > > 
> > Content-Type: text/plain; charset="utf-8"
> > 
> > I dont think its related to dhcp, it has something to realate with
> > spacewalk or kickstart itself, because in kickstart its referring
> > to
> > search
> > domain not to FQDN. You can see in screenshot below its referring
> > to
> > http://spacewalk/ks/dist/org/1/centos7-7 , its should have refer to
> > FQDN.
> > 
> > [image: Inline images 1]
> > 
> > 
> > > ----------------------------------------------------------------------
> > > 
> > > Message: 1
> > > Date: Sat, 18 Jun 2016 13:09:51 +0530
> > > From: Harshal Lakare < harshal.lakare at gmail.com >
> > > To: spacewalk-list at redhat.com
> > > Subject: [Spacewalk-list] Re :Re: Spacewalk-list Digest, Vol 97,
> > > Issue
> > > 22
> > > Message-ID:
> > > <CA+-UEp3HGP_sy7M2KuD==cOkEwF=V72UFCcuZoB=
> > > hUa8Apf_sw at mail.gmail.com >
> > > Content-Type: text/plain; charset="utf-8"
> > > 
> > > Oh but my DNS have FQDN for my spacewalk server. How do force
> > > spacewalk to
> > > use FQDN instate of short name, like its using
> > > http://spacewalk/ks/
> > > but
> > > how
> > > we can force to use it as http://spacewalk.mydoaminname.com ? i
> > > know this
> > > is kinda silly question but i'm bit new in linux and spacewalk
> > > stuff.
> > > 
> > > 
> > > > 1. Re: spacewalk kickstart failed to resolved hostname
> > > > (Paul Robert Marino)
> > > > 
> > > > 
> > > > ----------------------------------------------------------------------
> > > > 
> > > > Message: 1
> > > > Date: Fri, 17 Jun 2016 14:58:25 -0400
> > > > From: Paul Robert Marino < prmarino1 at gmail.com >
> > > > To: " spacewalk-list at redhat.com " < spacewalk-list at redhat.com >
> > > > Subject: Re: [Spacewalk-list] spacewalk kickstart failed to
> > > > resolved
> > > > hostname
> > > > Message-ID:
> > > > <
> > > > CAPJdpdBW61ZPtbAQQphOeWbdpMMK0Ud4rWAZ0EONCk3xq6njvQ at mail.gmail.com
> > > > > 
> > > > Content-Type: text/plain; charset="utf-8"
> > > > 
> > > > Thats not an FQDN (Fully Qualified Domain Name).
> > > > If it is a hostname within the search domain list in
> > > > /etc/resolve.conf on
> > > > the other host you tested from then yes it would work on the
> > > > host, but
> > > not
> > > > in the installer.
> > > > The installer does not support using search domains to lookup
> > > > hosts, it
> > > > must be a FQDN.
> > > > if you don't have a DNS available or for some reason don't want
> > > > to use
> > > the
> > > > one provided you by whoever manages your DNS then you can
> > > > rename
> > > > your
> > > > spacewalk server to its ip address I've done this on physically
> > > > isolated
> > > > lab lans with no external network access before (No internet so
> > > > why do
> > > you
> > > > need a DNS?).
> > > > 
> > > > On Fri, Jun 17, 2016 at 2:23 PM, Harshal Lakare <
> > > harshal.lakare at gmail.com >
> > > > wrote:
> > > > 
> > > > > Hello Guys,
> > > > > 
> > > > > I have configured spacewalk 2.4 and want to use to to
> > > > > provision
> > > > > new vms
> > > > or
> > > > > machines. I have successfully created a cobbler config from
> > > > > web
> > > > interface.
> > > > > At the time of PXE installation it fails at this point (PFA
> > > > > snapshot).
> > > > > 
> > > > > [image: Inline images 1]
> > > > > 
> > > > > 
> > > > > I check for DNS resolution is working fine, i can resolve it
> > > > > from
> > > another
> > > > > machine. is there anything wrong with my configuration ?
> > > > > 
> > > > > --
> > > > > Harshal Lakare
> > > > > --
> > > > > Harshal Lakare
> > > > > 
> > > > > _______________________________________________
> > > > > Spacewalk-list mailing list
> > > > > Spacewalk-list at redhat.com
> > > > > https://www.redhat.com/mailman/listinfo/spacewalk-list
> > > > > 
> > > > -------------- next part --------------
> > > > An HTML attachment was scrubbed...
> > > > URL: <
> > > > 
> > > https://www.redhat.com/archives/spacewalk-list/attachments/20160617/98f3ccd2/attachment.html
> > > > > 
> > > > -------------- next part --------------
> > > > A non-text attachment was scrubbed...
> > > > Name: image.png
> > > > Type: image/png
> > > > Size: 80025 bytes
> > > > Desc: not available
> > > > URL: <
> > > > 
> > > https://www.redhat.com/archives/spacewalk-list/attachments/20160617/98f3ccd2/attachment.png
> > > > > 
> > > > 
> > > > ------------------------------
> > > > 
> > > > _______________________________________________
> > > > Spacewalk-list mailing list
> > > > Spacewalk-list at redhat.com
> > > > https://www.redhat.com/mailman/listinfo/spacewalk-list
> > > > 
> > > > End of Spacewalk-list Digest, Vol 97, Issue 22
> > > > **********************************************
> > > > 
> > > 
> > > 
> > > 
> > > --
> > > Harshal Lakare
> > > -------------- next part --------------
> > > An HTML attachment was scrubbed...
> > > URL: <
> > > https://www.redhat.com/archives/spacewalk-list/attachments/20160618/7d6e3822/attachment.html
> > > > 
> > > 
> > > ------------------------------
> > > 
> > > Message: 2
> > > Date: Sat, 18 Jun 2016 10:51:08 -0400
> > > From: Konstantin Raskoshnyi < konrasko at gmail.com >
> > > To: " spacewalk-list at redhat.com " < spacewalk-list at redhat.com >
> > > Subject: Re: [Spacewalk-list] Re :Re: Spacewalk-list Digest, Vol
> > > 97,
> > > Issue 22
> > > Message-ID:
> > > <
> > > CAJU06NNQs43mTz3MaERU7kTgG-CPx-vAGTA+e_CERMhDd3CpQQ at mail.gmail.com
> > > > 
> > > Content-Type: text/plain; charset="utf-8"
> > > 
> > > Check your dhcp setting , domain search
> > > 
> > > On Saturday, June 18, 2016, Harshal Lakare <
> > > harshal.lakare at gmail.com >
> > > wrote:
> > > 
> > > > Oh but my DNS have FQDN for my spacewalk server. How do force
> > > > spacewalk
> > > to
> > > > use FQDN instate of short name, like its using
> > > > http://spacewalk/ks/ but
> > > > how we can force to use it as http://spacewalk.mydoaminname.com
> > > > ?
> > > > i
> > > know
> > > > this is kinda silly question but i'm bit new in linux and
> > > > spacewalk
> > > stuff.
> > > > 
> > > > 
> > > > 
> > > >> 1. Re: spacewalk kickstart failed to resolved hostname
> > > >> (Paul Robert Marino)
> > > >> 
> > > >> 
> > > >> ----------------------------------------------------------------------
> > > >> 
> > > >> Message: 1
> > > >> Date: Fri, 17 Jun 2016 14:58:25 -0400
> > > >> From: Paul Robert Marino < prmarino1 at gmail.com
> > > >> <javascript:_e(%7B%7D,'cvml',' prmarino1 at gmail.com ');>>
> > > >> To: " spacewalk-list at redhat.com
> > > >> <javascript:_e(%7B%7D,'cvml',' spacewalk-list at redhat.com ');>"
> > > >> <
> > > >> spacewalk-list at redhat.com
> > > >> <javascript:_e(%7B%7D,'cvml',' spacewalk-list at redhat.com ');>>
> > > >> Subject: Re: [Spacewalk-list] spacewalk kickstart failed to
> > > >> resolved
> > > >> hostname
> > > >> Message-ID:
> > > >> <
> > > >> CAPJdpdBW61ZPtbAQQphOeWbdpMMK0Ud4rWAZ0EONCk3xq6njvQ at mail.gmail.com
> > > >> <javascript:_e(%7B%7D,'cvml','
> > > CAPJdpdBW61ZPtbAQQphOeWbdpMMK0Ud4rWAZ0EONCk3xq6njvQ at mail.gmail.com
> > > ');>
> > > >> > 
> > > >> Content-Type: text/plain; charset="utf-8"
> > > >> 
> > > >> Thats not an FQDN (Fully Qualified Domain Name).
> > > >> If it is a hostname within the search domain list in
> > > >> /etc/resolve.conf
> > > on
> > > >> the other host you tested from then yes it would work on the
> > > >> host, but
> > > not
> > > >> in the installer.
> > > >> The installer does not support using search domains to lookup
> > > >> hosts, it
> > > >> must be a FQDN.
> > > >> if you don't have a DNS available or for some reason don't
> > > >> want
> > > >> to use
> > > the
> > > >> one provided you by whoever manages your DNS then you can
> > > >> rename
> > > >> your
> > > >> spacewalk server to its ip address I've done this on
> > > >> physically
> > > >> isolated
> > > >> lab lans with no external network access before (No internet
> > > >> so
> > > >> why do
> > > you
> > > >> need a DNS?).
> > > >> 
> > > >> On Fri, Jun 17, 2016 at 2:23 PM, Harshal Lakare <
> > > harshal.lakare at gmail.com
> > > >> <javascript:_e(%7B%7D,'cvml',' harshal.lakare at gmail.com ');>>
> > > >> wrote:
> > > >> 
> > > >> > Hello Guys,
> > > >> > 
> > > >> > I have configured spacewalk 2.4 and want to use to to
> > > >> > provision new
> > > vms
> > > >> or
> > > >> > machines. I have successfully created a cobbler config from
> > > >> > web
> > > >> interface.
> > > >> > At the time of PXE installation it fails at this point (PFA
> > > >> > snapshot).
> > > >> > 
> > > >> > [image: Inline images 1]
> > > >> > 
> > > >> > 
> > > >> > I check for DNS resolution is working fine, i can resolve it
> > > >> > from
> > > >> another
> > > >> > machine. is there anything wrong with my configuration ?
> > > >> > 
> > > >> > --
> > > >> > Harshal Lakare
> > > >> > --
> > > >> > Harshal Lakare
> > > >> > 
> > > >> > _______________________________________________
> > > >> > Spacewalk-list mailing list
> > > >> > Spacewalk-list at redhat.com
> > > >> <javascript:_e(%7B%7D,'cvml',' Spacewalk-list at redhat.com ');>
> > > >> > https://www.redhat.com/mailman/listinfo/spacewalk-list
> > > >> > 
> > > >> -------------- next part --------------
> > > >> An HTML attachment was scrubbed...
> > > >> URL: <
> > > >> 
> > > https://www.redhat.com/archives/spacewalk-list/attachments/20160617/98f3ccd2/attachment.html
> > > >> > 
> > > >> -------------- next part --------------
> > > >> A non-text attachment was scrubbed...
> > > >> Name: image.png
> > > >> Type: image/png
> > > >> Size: 80025 bytes
> > > >> Desc: not available
> > > >> URL: <
> > > >> 
> > > https://www.redhat.com/archives/spacewalk-list/attachments/20160617/98f3ccd2/attachment.png
> > > >> > 
> > > >> 
> > > >> ------------------------------
> > > >> 
> > > >> _______________________________________________
> > > >> Spacewalk-list mailing list
> > > >> Spacewalk-list at redhat.com
> > > >> <javascript:_e(%7B%7D,'cvml',' Spacewalk-list at redhat.com ');>
> > > >> https://www.redhat.com/mailman/listinfo/spacewalk-list
> > > >> 
> > > >> End of Spacewalk-list Digest, Vol 97, Issue 22
> > > >> **********************************************
> > > >> 
> > > > 
> > > > 
> > > > 
> > > > --
> > > > Harshal Lakare
> > > > 
> > > -------------- next part --------------
> > > An HTML attachment was scrubbed...
> > > URL: <
> > > https://www.redhat.com/archives/spacewalk-list/attachments/20160618/c7aff4c7/attachment.html
> > > > 
> > > 
> > > ------------------------------
> > > 
> > > _______________________________________________
> > > Spacewalk-list mailing list
> > > Spacewalk-list at redhat.com
> > > https://www.redhat.com/mailman/listinfo/spacewalk-list
> > > 
> > > End of Spacewalk-list Digest, Vol 97, Issue 23
> > > **********************************************
> > > 
> > 
> > 
> > 
> > --
> > Harshal Lakare
> > -------------- next part --------------
> > An HTML attachment was scrubbed...
> > URL: <
> > https://www.redhat.com/archives/spacewalk-list/attachments/20160619/ee8d2c65/attachment.html
> > > 
> > -------------- next part --------------
> > A non-text attachment was scrubbed...
> > Name: image.png
> > Type: image/png
> > Size: 50138 bytes
> > Desc: not available
> > URL: <
> > https://www.redhat.com/archives/spacewalk-list/attachments/20160619/ee8d2c65/attachment.png
> > > 
> > 
> > ------------------------------
> > 
> > _______________________________________________
> > Spacewalk-list mailing list
> > Spacewalk-list at redhat.com
> > https://www.redhat.com/mailman/listinfo/spacewalk-list
> > 
> > End of Spacewalk-list Digest, Vol 97, Issue 24
> > **********************************************
> > 
> > 
> > 
> > 
> > --
> > 
> > Harshal Lakare
> > 
> > _______________________________________________
> > Spacewalk-list mailing list
> > Spacewalk-list at redhat.com
> > https://www.redhat.com/mailman/listinfo/spacewalk-list
> 
> 
> 
> ------------------------------
> 
> _______________________________________________
> Spacewalk-list mailing list
> Spacewalk-list at redhat.com
> https://www.redhat.com/mailman/listinfo/spacewalk-list
> 
> End of Spacewalk-list Digest, Vol 97, Issue 34
> **********************************************
> 
> 
> 
> 
> --
> 
> Harshal Lakare
> 
> _______________________________________________
> Spacewalk-list mailing list
> Spacewalk-list at redhat.com
> https://www.redhat.com/mailman/listinfo/spacewalk-list




More information about the Spacewalk-list mailing list