Your message dated Mon, 10 Oct 2016 10:04:43 +0000
with message-id <[email protected]>
and subject line Bug#830302: fixed in cobbler 2.6.6+dfsg1-13
has caused the Debian Bug report #830302,
regarding cobbler using wrong URL
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
830302: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=830302
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: cobbler
Severity: important
Tags: patch

Dear Maintainer,

Executing `cobbler get-loaders` or `cobbler signature update` with
2.6.6+dfsg1-12 results in:

Exception occured: <class 'urlgrabber.grabber.URLGrabError'>
Exception value: [Errno 14] PYCURL ERROR 6 - "Could not resolve host:
www.cobblerd.org"
Exception Info:
  File "/usr/lib/python2.7/dist-packages/cobbler/api.py", line 601, in
signature_update
    response = urlgrabber.grabber.urlopen(self.settings().signature_url,
proxies=proxies)
   File "/usr/lib/python2.7/dist-packages/urlgrabber/grabber.py", line
628, in urlopen
    return default_grabber.urlopen(url, **kwargs)
   File "/usr/lib/python2.7/dist-packages/urlgrabber/grabber.py", line
926, in urlopen
    return self._retry(opts, retryfunc, url)
   File "/usr/lib/python2.7/dist-packages/urlgrabber/grabber.py", line
886, in _retry
    r = apply(func, (opts,) + args, {})
   File "/usr/lib/python2.7/dist-packages/urlgrabber/grabber.py", line
925, in retryfunc
    return PyCurlFileObject(url, filename=None, opts=opts)
   File "/usr/lib/python2.7/dist-packages/urlgrabber/grabber.py", line
1063, in __init__
    self._do_open()
   File "/usr/lib/python2.7/dist-packages/urlgrabber/grabber.py", line
1355, in _do_open
    self._do_grab()
   File "/usr/lib/python2.7/dist-packages/urlgrabber/grabber.py", line
1485, in _do_grab
    self._do_perform()
   File "/usr/lib/python2.7/dist-packages/urlgrabber/grabber.py", line
1342, in _do_perform
    raise err

This was fixed upstream in 1c680061f85365dcf01d133286f1ff4c6e2acd64.

-- System Information:
Debian Release: stretch/sid
  APT prefers xenial-updates
  APT policy: (500, 'xenial-updates'), (500, 'xenial-security'), (500, 
'xenial'), (100, 'xenial-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.4.0-28-generic (SMP w/4 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-- 
Nishanth Aravamudan
Ubuntu Server
Canonical Ltd
diff -Nru cobbler-2.6.6+dfsg1/debian/changelog 
cobbler-2.6.6+dfsg1/debian/changelog
--- cobbler-2.6.6+dfsg1/debian/changelog        2016-01-31 00:15:42.000000000 
-0800
+++ cobbler-2.6.6+dfsg1/debian/changelog        2016-07-07 18:02:42.000000000 
-0700
@@ -1,3 +1,10 @@
+cobbler (2.6.6+dfsg1-12.1) unstable; urgency=medium
+
+  * debian/patches/remove_cobblerd.org_references.patch: Remove
+    references to cobblerd.org.
+
+ -- Nishanth Aravamudan <[email protected]>  Thu, 07 Jul 2016 
18:02:33 -0700
+
 cobbler (2.6.6+dfsg1-12) unstable; urgency=medium
 
   * koan now depends on libvirt-daemon-system instead of libvirt-bin.
diff -Nru 
cobbler-2.6.6+dfsg1/debian/patches/remove_cobblerd.org_references.patch 
cobbler-2.6.6+dfsg1/debian/patches/remove_cobblerd.org_references.patch
--- cobbler-2.6.6+dfsg1/debian/patches/remove_cobblerd.org_references.patch     
1969-12-31 16:00:00.000000000 -0800
+++ cobbler-2.6.6+dfsg1/debian/patches/remove_cobblerd.org_references.patch     
2016-07-07 18:02:25.000000000 -0700
@@ -0,0 +1,151 @@
+Description: Remove references to cobblerd.org
+ Upstream URL has moved from www.cobblerd.org to cobbler.github.io.
+Author: Nishanth Aravamudan <[email protected]>
+Origin: upstream, 
https://github.com/cobbler/cobbler/commit/1c680061f85365dcf01d133286f1ff4c6e2acd64
+
+--- cobbler-2.6.6+dfsg1.orig/README
++++ cobbler-2.6.6+dfsg1/README
+@@ -2,7 +2,7 @@ Cobbler
+ 
+ Cobbler is a Linux installation server that allows for rapid setup of network 
installation environments. It glues together and automates many associated 
Linux tasks so you do not have to hop between lots of various commands and 
applications when rolling out new systems, and, in some cases, changing 
existing ones. It can help with installation, DNS, DHCP, package updates, power 
management, configuration management orchestration, and much more.
+ 
+-Read more at http://www.cobblerd.org
++Read more at http://cobbler.github.io
+ 
+ To view the manpages, install the RPM and run "man cobbler" or run "perldoc 
cobbler.pod" from a source checkout.  "koan" also has a manpage.
+ 
+--- cobbler-2.6.6+dfsg1.orig/cobbler/action_dlcontent.py
++++ cobbler-2.6.6+dfsg1/cobbler/action_dlcontent.py
+@@ -46,7 +46,7 @@ class ContentDownloader:
+         they can still source their cross-arch bootloader content manually.
+         """
+ 
+-        content_server = "http://www.cobblerd.org/loaders";
++        content_server = "http://cobbler.github.io/loaders";
+         dest = "/var/lib/cobbler/loaders"
+ 
+         files = (
+--- cobbler-2.6.6+dfsg1.orig/cobbler/settings.py
++++ cobbler-2.6.6+dfsg1/cobbler/settings.py
+@@ -126,7 +126,7 @@ DEFAULTS = {
+     "server"                              : ["127.0.0.1","str"],
+     "sign_puppet_certs_automatically"     : [0,"bool"],
+     "signature_path"                      : 
["/var/lib/cobbler/distro_signatures.json","str"],
+-    "signature_url"                       : 
["http://www.cobblerd.org/signatures/latest.json","str";],
++    "signature_url"                       : 
["http://cobbler.github.io/signatures/latest.json","str";],
+     "snippetsdir"                         : 
["/var/lib/cobbler/snippets","str"],
+     "template_remote_kickstarts"          : [0,"bool"],
+     "virt_auto_boot"                      : [0,"bool"],
+--- cobbler-2.6.6+dfsg1.orig/docs/man/cobbler.1.pod
++++ cobbler-2.6.6+dfsg1/docs/man/cobbler.1.pod
+@@ -26,7 +26,7 @@ The main advantage of cobbler is that it
+ 
+ This manpage will focus on the cobbler command line tool for use in 
configuring cobbler.  There is also mention
+ of the Cobbler WebUI which is usable for day-to-day operation of Cobbler once 
installed/configured.  Docs on
+-the API and XMLRPC components are available online at http://www.cobblerd.org.
++the API and XMLRPC components are available online at http://cobbler.github.io
+ 
+ Most users will be interested in the Web UI and should set it up, though the 
command line is needed for initial configuration -- in particular "cobbler 
check" and "cobbler import", as well as the repo mirroring features.  All of 
these are described later in the documentation.
+ 
+@@ -955,7 +955,7 @@ Triggers provide a way to integrate cobb
+ 
+ =head2 API
+ 
+-Cobbler also makes itself available as an XMLRPC API for use by higher level 
management software.  Learn more at http://www.cobblerd.org.  
++Cobbler also makes itself available as an XMLRPC API for use by higher level 
management software.  Learn more at http://cobbler.github.io
+ 
+ =head2 WEB USER INTERFACE
+ 
+@@ -985,7 +985,7 @@ Cobbler has a mailing list for user and
+ 
+ IRC channel:  irc.freenode.net (#cobbler)
+ 
+-Official web site, bug tracker, and Wiki: http://www.cobblerd.org
++Official web site, bug tracker, and Wiki: http://cobbler.github.io
+ 
+ =head1 AUTHOR
+ 
+--- cobbler-2.6.6+dfsg1.orig/setup.py
++++ cobbler-2.6.6+dfsg1/setup.py
+@@ -567,7 +567,7 @@ if __name__ == "__main__":
+         long_description = "Cobbler is a network install server.  Cobbler 
supports PXE, virtualized installs, and reinstalling existing Linux machines.  
The last two modes use a helper tool, 'koan', that integrates with cobbler.  
There is also a web interface 'cobbler-web'.  Cobbler's advanced features 
include importing distributions from DVDs and rsync mirrors, kickstart 
templating, integrated yum mirroring, and built-in DHCP/DNS Management.  
Cobbler has a XMLRPC API for integration with other applications.",
+         author = "Team Cobbler",
+         author_email = "[email protected]",
+-        url = "http://www.cobblerd.org/";,
++        url = "http://cobbler.github.io/";,
+         license = "GPLv2+",
+         requires = [
+             "mod_python",
+--- cobbler-2.6.6+dfsg1.orig/templates/iso/buildiso.template
++++ cobbler-2.6.6+dfsg1/templates/iso/buildiso.template
+@@ -1,6 +1,6 @@
+ DEFAULT MENU
+ PROMPT 0
+-MENU TITLE Cobbler | http://www.cobblerd.org/
++MENU TITLE Cobbler | http://github.cobbler.io/
+ TIMEOUT 200
+ TOTALTIMEOUT 6000
+ ONTIMEOUT local
+--- cobbler-2.6.6+dfsg1.orig/templates/pxe/pxedefault.template
++++ cobbler-2.6.6+dfsg1/templates/pxe/pxedefault.template
+@@ -1,6 +1,6 @@
+ DEFAULT menu
+ PROMPT 0
+-MENU TITLE Cobbler | http://www.cobblerd.org/
++MENU TITLE Cobbler | http://cobbler.github.io/
+ TIMEOUT 200
+ TOTALTIMEOUT 6000
+ ONTIMEOUT $pxe_timeout_profile
+--- cobbler-2.6.6+dfsg1.orig/templates/reporting/build_report_email.template
++++ cobbler-2.6.6+dfsg1/templates/reporting/build_report_email.template
+@@ -8,7 +8,7 @@ Subject: $subject (profile: $name, ip: $
+ 
+ Cobbler build report.
+ =======================================================
+-http://www.cobblerd.org/
++http://github.cobbler.io/
+ 
+ #if $getVar("interfaces","") != "":
+ 
+--- cobbler-2.6.6+dfsg1.orig/web/cobbler_web/templates/blank.tmpl
++++ cobbler-2.6.6+dfsg1/web/cobbler_web/templates/blank.tmpl
+@@ -2,7 +2,7 @@
+ 
+ #block body
+ #if $getVar('more_blank','') == ''
+-You are now logged in to <A HREF="http://www.cobblerd.org/";>Cobbler</A>.
++You are now logged in to <A HREF="http://github.cobbler.io/";>Cobbler</A>.
+ 
+ Main screen turn on.
+ #else
+--- cobbler-2.6.6+dfsg1.orig/web/cobbler_web/templates/index.tmpl
++++ cobbler-2.6.6+dfsg1/web/cobbler_web/templates/index.tmpl
+@@ -2,7 +2,7 @@
+ 
+ {% block content %}
+ 
+-Welcome to <a href="http://www.cobblerd.org/";>Cobbler {{ version }}</a>.
++Welcome to <a href="http://github.cobbler.io/";>Cobbler {{ version }}</a>.
+ <p>
+   Currently logged in as <b>{{ username }}</b>.
+ </p>
+--- cobbler-2.6.6+dfsg1.orig/web/cobbler_web/templates/master.tmpl
++++ cobbler-2.6.6+dfsg1/web/cobbler_web/templates/master.tmpl
+@@ -61,7 +61,7 @@
+       <ul>
+         <li><a href="/cobbler_web/check" class="menu">Check</a></li>
+         <li><a href="/cobbler_web/events" class="menu">Events</a></li>
+-        <li><a href="http://www.cobblerd.org/manuals/";>Online 
Documentation</a></li>
++        <li><a href="http://github.cobbler.io/manuals/";>Online 
Documentation</a></li>
+         <li><a href="http://webchat.freenode.net?channels=#cobbler";>Online 
Help Chat</a></li>
+       </ul>
+     </div>
+@@ -73,7 +73,7 @@
+     <div id="spacer">&nbsp</div>
+   </div> <!-- body -->
+   <div id="footer">
+-    <a href="http://www.cobblerd.org/";>Cobbler {{ version }}</a>
++    <a href="http://github.cobbler.io/";>Cobbler {{ version }}</a>
+   </div>
+   <div id="jsGrowl"></div>
+ </div> <!-- container -->
diff -Nru cobbler-2.6.6+dfsg1/debian/patches/series 
cobbler-2.6.6+dfsg1/debian/patches/series
--- cobbler-2.6.6+dfsg1/debian/patches/series   2016-01-31 00:15:42.000000000 
-0800
+++ cobbler-2.6.6+dfsg1/debian/patches/series   2016-07-07 18:01:07.000000000 
-0700
@@ -12,3 +12,4 @@
 fix-defaults-settings.patch
 fix-wsgi-application-definition-with-django-1.7.patch
 added-fuel-bootstrap-iso-as-source-for-pxelinux.0.patch
+remove_cobblerd.org_references.patch

--- End Message ---
--- Begin Message ---
Source: cobbler
Source-Version: 2.6.6+dfsg1-13

We believe that the bug you reported is fixed in the latest version of
cobbler, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Thomas Goirand <[email protected]> (supplier of updated cobbler package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Fri, 12 Feb 2016 20:49:50 +0800
Source: cobbler
Binary: python-cobbler cobbler-common cobbler-web cobbler python-koan koan
Architecture: source all
Version: 2.6.6+dfsg1-13
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack <[email protected]>
Changed-By: Thomas Goirand <[email protected]>
Description:
 cobbler    - network boot, install, and update server - daemon
 cobbler-common - network boot, install, and update server - common files
 cobbler-web - network boot, install, and update server - web interface
 koan       - kickstart-over-a-network (koan)
 python-cobbler - network boot, install, and update server - Python modules
 python-koan - Kickstart-Over-A-Network - Python libraries
Closes: 830302 830505 831213 831214 839325
Changes:
 cobbler (2.6.6+dfsg1-13) unstable; urgency=medium
 .
   [ Thomas Goirand ]
   * Added /etc/cobbler/pxe template files.
   * Use dnsmasq instead of bind and isc-dhcp by default.
   * Add debian/dnsmasq.upstream directly in cobbler-common, so the user doesn't
     have to manually copy it.
   * Add bind9utils and bind9host as depends in cobbler.
   * Fix /etc/cobbler/settings @@webroot@@ to be the full path.
   * Remove add-trusty.patch (applied upstream).
   * Set 10.20.0.2 as default server: and next_server: directives.
   * Switch to openstack-pkg-tools for the startup scripts, so that Cobbler has
     support for upstart, sysv-rc and systemd.
   * Removed $named form init script.
   * Fixed Apache access rights to /cobbler_webui_content.
   * Fixed unix rights of /etc/cobbler/settings.
   * Removed wrong patch of cobbler/web/cobbler_web/views.py.
   * Added patches:
     - fixed-failed_to_read_cobbler.1.gz.patch (Closes: #839325).
     - remove_cobblerd.org_references.patch (Closes: #830302).
   * Fixed incorrectly builds power templates into pxe directory
     (Closes: #830505).
   * Add patch to make Cobbler reproducible (Closes: #831214).
   * Do not run unit tests, they are in fact functional tests, and cannot be
     ran at build time (Closes: #831213).
 .
   [ Ondřej Nový ]
   * Fixed VCS URLs (https).
   * d/rules: Changed UPSTREAM_GIT protocol to https
Checksums-Sha1:
 14cbbf464e317c4b665d98b2d5e68f84ef7ef735 2459 cobbler_2.6.6+dfsg1-13.dsc
 da07b5f93b8f5e26aee987b35e895efda2860c84 33864 
cobbler_2.6.6+dfsg1-13.debian.tar.xz
 686d5457e48363e735cbcad1216c2107f2339672 129454 
cobbler-common_2.6.6+dfsg1-13_all.deb
 1045411e5d1f12c81481606aca686ead63210b26 6542 
cobbler-web_2.6.6+dfsg1-13_all.deb
 03917e41774c3ea3ecad4551dfd11b2e9033ed1d 60006 cobbler_2.6.6+dfsg1-13_all.deb
 927ca61db7bb4958d5bbc66a088c1c2574b8194c 11466 koan_2.6.6+dfsg1-13_all.deb
 ae15811070f1522d136d28b6e33ce1a52e5de8fb 159070 
python-cobbler_2.6.6+dfsg1-13_all.deb
 4f4944b35d565d7253d7952138f1df403eb41354 59692 
python-koan_2.6.6+dfsg1-13_all.deb
Checksums-Sha256:
 7fc8b3076d5e16fb93ba0b6441f2fefc895ebafd6a68c7e34110c58e025042e8 2459 
cobbler_2.6.6+dfsg1-13.dsc
 cfa0f9ff1db1bd9b1804d74e8f6f23a8eeef4f9e3f03b386d6fc3d21ddc609bc 33864 
cobbler_2.6.6+dfsg1-13.debian.tar.xz
 8f18ef16778d579c45f7a5143970e150adca3a1ecf2e2937c3b318640b6a1839 129454 
cobbler-common_2.6.6+dfsg1-13_all.deb
 342772a09d39ac45b1be2427ac09e046ea8085447bf461c5701f4ac40f67695e 6542 
cobbler-web_2.6.6+dfsg1-13_all.deb
 df902e4f225e3ba686330ec107e1eea414010c339afc95355ae08b4f55bd64f0 60006 
cobbler_2.6.6+dfsg1-13_all.deb
 313fa325f0ecc05af38c4096d08b2ffcd356d4af3b4b45f7b0cb8192d4a30cbf 11466 
koan_2.6.6+dfsg1-13_all.deb
 6840baf4f12c2c5c2d1624c0ea533659f852e3575c17cdda9ebc237f01ef1cd6 159070 
python-cobbler_2.6.6+dfsg1-13_all.deb
 344632c83b08594f86950d22a5c7398d191e1caed9801e8f96cb288467374d6f 59692 
python-koan_2.6.6+dfsg1-13_all.deb
Files:
 07ff3d94c8277d5bcfb769d256ecb5fe 2459 admin optional cobbler_2.6.6+dfsg1-13.dsc
 2bc5264f6e7d21ea2ecd26e978458ada 33864 admin optional 
cobbler_2.6.6+dfsg1-13.debian.tar.xz
 92bc45e63a606aa0320ed90ce874a0ec 129454 admin optional 
cobbler-common_2.6.6+dfsg1-13_all.deb
 407cb2275a9f1589684b95445800f914 6542 admin optional 
cobbler-web_2.6.6+dfsg1-13_all.deb
 ddcb19a917a32cf5427960a654ab86b2 60006 admin optional 
cobbler_2.6.6+dfsg1-13_all.deb
 08beab04f08ba72250ffa07d1f131f49 11466 admin optional 
koan_2.6.6+dfsg1-13_all.deb
 54947268206d62b65d3a4f2dad0fd1db 159070 python optional 
python-cobbler_2.6.6+dfsg1-13_all.deb
 715b096d660939b0434739f03e620675 59692 python optional 
python-koan_2.6.6+dfsg1-13_all.deb

-----BEGIN PGP SIGNATURE-----

iQItBAEBCAAXBQJX+04OEBx6aWdvQGRlYmlhbi5vcmcACgkQ1BatFaxrQ/5AhA/8
De6RF0gBTzS2VOWrQHFmgal7jREm+2kP2/mwWm37FGkmrVk5aTwOHYnzr1J/MdqJ
aRKfwFMl4E3MZpw8CAB5xDuZ7Fcf/mqUqYxac+Q3I046o0dKnuKDMzBV799i8WAs
MPe1SrIEQX29fXQ5o/6Ler4Kxnn+uPqNFFiM6Av2P4XJ2VDu2G67ZUVtCpSigi8g
QZHEHrQAF92KdgGVngW2SVTkOh17gTKg6czd0hZ9Fyz2oTow+j8hlphsFQRHpoP+
B+g2bN6i+rnuNrTfn4Samuxs+yVaUzslNCuRDrXpPYwmAShWri7AwuzIqG4z7+Tt
V/Hw2F437+nWps7cTsSnJ0MlAgMvnlwZS4imU8Xcv0lY9nQMGgUu3nmci94PZXak
0nTiZWu310WffEk05NS3yKVR6ah1E1ALuuVlGVqW628Chonmz+D3PZW+k8+WgYSs
3AJwzdXbr52vX+W3GbXegGH6FDGS9tYuTt+ZVsiToppcc1hRaHG6aDy5zDggzW99
0Sq1+Bkq725dDG6o4N1Amob/bwt+OgwqGjSFAGL2GIagvB5Rsb3aBg33cufs+rd9
9TwsIM75Eb+geH8P1ZbTUGNlSjr0ybOm/1aOJVbDX6WTIk42jztSZ7NI/QCl7Km0
veEt1btRvNNPA2CZiIQqXv/TV1VewEP8N9ZkDX8/WAo=
=RBbV
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to