[Bug 667265] New: LiveCD installs fail to set hostname
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c0 Summary: LiveCD installs fail to set hostname Classification: openSUSE Product: openSUSE 11.4 Version: Factory Platform: All OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: Basesystem AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: bwiedemann@novell.com QAContact: qa@suse.de Found By: Development Blocker: --- Created an attachment (id=410469) --> (http://bugzilla.novell.com/attachment.cgi?id=410469) bash -x ifup eth0 LiveCD installs fail to set hostname Steps To Reproduce: install LiveCD Build1025 or later echo susetest.zq1.de > /etc/HOSTNAME hostname susetest alternatively use yast2 lan to set hostname. have "Change Hostname via DHCP" enabled. ifdown eth0 ifup eth0 hostname Actual Results: prints "linux" Expected Results should print "susetest" Reproducible: Always see also http://openqa.opensuse.org/results/openSUSE-GNOME-LiveCD-x86_64-Build1033 last known working in Build1022 from 2011-01-18 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c wei wang <wewang@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wewang@novell.com AssignedTo|bnc-team-screening@forge.pr |ms@novell.com |ovo.novell.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c1 Marcus Schaefer <ms@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ms@novell.com |coolo@novell.com --- Comment #1 from Marcus Schaefer <ms@novell.com> 2011-01-28 11:50:36 UTC --- I think DHCLIENT_SET_HOSTNAME="yes" in '/etc/sysconfig/network/dhcp' should solve this ? Coolo you might think of adding that to the live CD setup ? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c2 Stephan Kulow <coolo@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|coolo@novell.com |mt@novell.com --- Comment #2 from Stephan Kulow <coolo@novell.com> 2011-01-28 13:25:36 CET --- the opensuse live cd uses network manager and the bug is that _if_ he enables the option manually, it doesn't work. And this is no kiwi bug either -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c3 Marius Tomaschewski <mt@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |mt@novell.com AssignedTo|mt@novell.com |varkoly@novell.com --- Comment #3 from Marius Tomaschewski <mt@novell.com> 2011-01-28 13:31:30 UTC --- The hostname from /etc/HOSTNAME is set via /etc/init.d/boot.localnet, so it should be initially set (before /etc/init.d/network starts). Can you press ESC key at boot time and take a look if you see some of the following messages? Using boot-specified hostname 'linux' Setting up hostname 'linux' done Setting up loopback interface lo Or reboot and edit the kernel boot options (ESC to get text mode) and remove the quiet option and set spash=0. While network start (ifup-dhcp), th the dhcp client sends /etc/HOSTNAME to the dhcp server (-h $hostname option) and either gets it back from the dhcp server or not. The dhcp client sets then either the hostname it got back or the hostname it got on reverse lookup of the ip address. What is set, should be also visible in /var/log/messages, e.g.: Jan 28 12:02:22 xanthos dhcpcd[4633]: br1000: setting hostname to `linux' In your case, it seems to get "linux" back from the dhcp-server: ++ cat /dev/.sysconfig/network/tmp/if-eth0.25556 + case $a in + echo primary=yes + IFS== + read a b + case $a in + echo hostname=linux ^^^^^^^^^^^^^^^^^^^ + IFS== + read a b + case $a in + echo dhcp4_client=dhcpcd ^^^^^^^^^^^^^^^^^^^^^^^^ + IFS== + read a b + case $a in + echo config=eth0 + IFS== + read a b + case $a in + IFS== + read a b + case $a in + echo dhcp4_state=complete ^^^^^^^^^^^^^^^^^^^^^^^^^ Please provide the output of the following commands executed as root: ps ax | grep /sbin/dhc | grep -v grep unset HOSTNAME eval `dhcpcd-test eth0 | grep ^HOSTNAME` echo "HOSTNAME: $HOSTNAME" eval `dhcpcd-test eth0 | grep ^IPADDR` echo "IPADDR: $IPADDR" test -n "$IPADDR" && host $IPADDR See also the following related variables (and defaults): DHCLIENT_SET_DEFAULT_ROUTE=yes, DHCLIENT_USE_LAST_LEASE=yes, DHCLIENT_HOSTNAME_OPTION="AUTO", DHCLIENT_RELEASE_BEFORE_QUIT=no in /etc/sysconfig/network/dhcp. Maybe you have to set DHCLIENT_RELEASE_BEFORE_QUIT="yes" for your dhcp server? Reassigned to Peter Varkoly, who maintains the dhcpcd package, that is responsible to set the hostname. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c4 Marius Tomaschewski <mt@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO InfoProvider| |bwiedemann@novell.com --- Comment #4 from Marius Tomaschewski <mt@novell.com> 2011-01-28 13:32:24 UTC --- What do the commands above show? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c5 --- Comment #5 from Marius Tomaschewski <mt@novell.com> 2011-01-28 13:40:59 UTC --- BTW: Going to try out http://download.opensuse.org/factory/iso/openSUSE-GNOME-LiveCD-x86_64-Build1... .. the actual one. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c6 Bernhard Wiedemann <bwiedemann@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED InfoProvider|bwiedemann@novell.com | --- Comment #6 from Bernhard Wiedemann <bwiedemann@novell.com> 2011-01-28 16:21:05 CET --- linux:~ # ps ax | grep /sbin/dhc | grep -v grep 1332 ? S 0:00 /sbin/dhclient6 -6 -cf /var/lib/dhcp6/dhclient6.eth0.conf -lf /var/lib/dhcp6/dhclient6.eth0.lease -pf /var/run/dhclient6.eth0.pid -q eth0 1805 ? Ss 0:00 /sbin/dhcpcd --netconfig -L -E -HHH -c /etc/sysconfig/network/scripts/dhcpcd-hook -t 0 -h susetest eth0 linux:~ # echo $HOSTNAME linux linux:~ # unset HOSTNAME linux:~ # eval `dhcpcd-test eth0 | grep ^HOSTNAME` linux:~ # echo "HOSTNAME: $HOSTNAME" HOSTNAME: linux:~ # eval `dhcpcd-test eth0 | grep ^IPADDR` linux:~ # echo "IPADDR: $IPADDR" IPADDR: 10.0.2.15 linux:~ # test -n "$IPADDR" && host $IPADDR Host 15.2.0.10.in-addr.arpa. not found: 3(NXDOMAIN) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c7 --- Comment #7 from Bernhard Wiedemann <bwiedemann@novell.com> 2011-01-28 16:33:24 CET --- everything on default /etc/sysconfig/network/dhcp:DHCLIENT_RELEASE_BEFORE_QUIT="no" /etc/sysconfig/network/dhcp:DHCLIENT_HOSTNAME_OPTION="AUTO" /etc/sysconfig/network/dhcp:DHCLIENT_SET_DEFAULT_ROUTE="yes" for comparison, here is the output from the current Build1038 net install: susetest:~ # ps ax | grep /sbin/dhc | grep -v grep 1904 ? Ss 0:00 /sbin/dhcpcd --netconfig -L -E -HHH -c /etc/sysconfig/network/scripts/dhcpcd-hook -t 0 -h susetest eth0 The other stuff is the same. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c8 Peter Varkoly <varkoly@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO InfoProvider| |bwiedemann@novell.com --- Comment #8 from Peter Varkoly <varkoly@novell.com> 2011-01-31 06:02:17 UTC --- In accordance with #2 this must be a dhclient issue, isn't it? On the other hand, in case of -HHH dhcpcd sets the hostname delivered by the dhcp server. This is saved in /var/lib/dhcpcd/dhcpcd-eth0.info as HOSTNAME. Does this variable contains any value? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c9 Marius Tomaschewski <mt@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW InfoProvider|bwiedemann@novell.com | AssignedTo|varkoly@novell.com |bili@novell.com --- Comment #9 from Marius Tomaschewski <mt@novell.com> 2011-01-31 12:52:34 UTC --- OK, I've installed the LiveCD and see what the problem is: !NetworkManager! breaks the host resolution completely: linux:~ # cat /etc/HOSTNAME linux-hq0d.site linux:~ # dhcpcd-test eth0 | grep HOSTNAME linux:~ # dhcpcd-test eth0 | grep IPADDR IPADDR='172.16.4.60' linux:~ # grep linux /etc/hosts 172.16.4.60 linux.site linux # Added by NetworkManager ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ::1 linux.site linux localhost6.localdomain6 localhost6 ^^^^^^^^^^^^^^^^^^^^^ 127.0.0.2 linux-hq0d.site linux-hq0d When dhcpcd tries to resolve the IP to name (because the poorly configured dhcp-server does not provide it in its response), it makes use of the normal system configuration, that is /etc/nsswitch.conf order of "files dns" and of course it gets the hostname from /etc/hosts and not the one from DNS. NetworkManager: please fix and don't do such a crap any more. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c10 Marius Tomaschewski <mt@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - None |P3 - Medium CC| |coolo@novell.com Severity|Normal |Major --- Comment #10 from Marius Tomaschewski <mt@novell.com> 2011-01-31 12:55:48 UTC --- Increasing the importance, because this breaks many things. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c11 Bernhard Wiedemann <bwiedemann@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jeffm@novell.com --- Comment #11 from Bernhard Wiedemann <bwiedemann@novell.com> 2011-01-31 14:15:15 CET --- If it was NetworkManager, this might have been the causing commit: http://lists.suse.com/archive/opensuse-commit/2011-01/msg00551.html -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c12 --- Comment #12 from Jeff Mahoney <jeffm@novell.com> 2011-01-31 13:47:23 UTC --- That commit couldn't have caused the issue. If you were hitting the condition that patch fixes, NetworkManager would have been crashing before. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c13 Marius Tomaschewski <mt@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ms@novell.com --- Comment #13 from Marius Tomaschewski <mt@novell.com> 2011-01-31 13:56:38 UTC --- (In reply to comment #11)
If it was NetworkManager, this might have been the causing commit: http://lists.suse.com/archive/opensuse-commit/2011-01/msg00551.html
AFAS it isn't the above commit. I guess, the NM on 11.4 makes this sort of modifications. But as long as NM is running and updates the /etc/hosts correctly on all IP changes, it basically works. I guess, it is a workaround against broken dns server or something like this. Enabling something like this is _very_ questionable, because it breaks correctly configured networks. e.g. in my case, it breaks my IPv6 setup. I didn't tested it, just guess: when you switch from NM to ifup or also when kiwi copies /etc/hosts from live-cd to the running system, the file contains these modifications, because NM does not cleanup them properly. (In reply to comment #2)
the opensuse live cd uses network manager and the bug is that _if_ he enables the option manually, it doesn't work.
This is not really correct. The Live-CD / installation system may use NM, but the installed system when booting from the ISO and choosing "Installation" (in grub) AFAIS makes use of ifup by default. I've installed using yast2 defaults and Bernhard too. See his video in comment 0. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c Li Bin <bili@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c14 --- Comment #14 from Li Bin <bili@novell.com> 2011-02-15 08:24:59 UTC --- (In reply to comment #0)
Created an attachment (id=410469) --> (http://bugzilla.novell.com/attachment.cgi?id=410469) [details] bash -x ifup eth0
LiveCD installs fail to set hostname
Steps To Reproduce: install LiveCD Build1025 or later echo susetest.zq1.de > /etc/HOSTNAME hostname susetest alternatively use yast2 lan to set hostname. have "Change Hostname via DHCP" enabled.
ifdown eth0 ifup eth0 hostname
Actual Results: prints "linux"
Expected Results should print "susetest"
Reproducible: Always
see also http://openqa.opensuse.org/results/openSUSE-GNOME-LiveCD-x86_64-Build1033
last known working in Build1022 from 2011-01-18
I've tested this issue in the RC1, after reboot the hostname show the correct name. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c15 Li Bin <bili@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO InfoProvider| |mt@novell.com --- Comment #15 from Li Bin <bili@novell.com> 2011-02-15 08:47:33 UTC --- Marius, This is my /etc/hosts file after set hostname by Comment 0, and after reboot the machine. 147.2.207.126 Azi # Added by NetworkManager 127.0.0.1 localhost.localdomain localhost linux-fnxj ::1 Azi localhost6.localdomain6 localhost6 linux-fnxj Azi.bj.novell.com linux.site linux # special IPv6 addresses ::1 localhost ipv6-localhost ipv6-loopback fe00::0 ipv6-localnet ff00::0 ipv6-mcastprefix ff02::1 ipv6-allnodes ff02::2 ipv6-allrouters ff02::3 ipv6-allhosts 127.0.0.2 Azi.bj.novell.com Azi It works fine for me, the hostname is 'Azi', and my original hostname is 'linux-fnxj'. And in Comment 9, if the NM don't change the hostname in hosts, so who will in charge of it? Or which one don't need changed by NM? Thanks! -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c16 --- Comment #16 from Li Bin <bili@novell.com> 2011-02-15 09:19:22 UTC --- commit 39eed50e470d6f41222e40ce0276b898e8c84dc4 I view the soucecode in the upstream, and found no touching the /etc/hosts now. And I build a package in my repo, you can get the rpms for testing. http://download.opensuse.org/repositories/home:/BinLi:/branches:/GNOME:/Fact... If it's okay, I'll put it into the RC2. Author: Dan Williams <dcbw@redhat.com> Date: Fri Dec 17 09:22:11 2010 -0600 policy: stop touching /etc/hosts Handling of /etc/hosts is highly site- and admin- specific in many more complex cases, and it's exceedingly hard and error- prone for NetworkManager to handle all those cases. So remove this functionality entirely. That's not a big loss, as it turns out there's a much more elegant solution. The only requirement is that the machine's hostname map back to an IP address owned by the machine. That requirement can be satisifed by nss-myhostname or even possibly the distro's installer. If the user does not want nss-myhostname then it can be uninstalled. Distros should use a "recommends" feature in their packaging system so that the NetworkManager package does *not* have a hard requirement on nss-myhostname. Thus everyone is happy; things Just Work when nss-myhostname is installed, but more advanced users can uninstall it and customize /etc/hosts as they wish. Another alternative is a dispatcher script that listents for the 'hostname' event, and updates /etc/hosts according to the administrator's preference. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c17 --- Comment #17 from Marius Tomaschewski <mt@novell.com> 2011-02-15 09:50:12 UTC --- (In reply to comment #15) [...]
147.2.207.126 Azi # Added by NetworkManager 127.0.0.1 localhost.localdomain localhost linux-fnxj ::1 Azi localhost6.localdomain6 localhost6 linux-fnxj Azi.bj.novell.com linux.site linux [...] It works fine for me, the hostname is 'Azi', and my original hostname is 'linux-fnxj'.
When you add the hostnames to /etc/hosts [even worser when you override all the localhost entries and add the broken *.localdomain, *.site], the resolver does not use dns any more but returns the answers from /etc/hosts only. It "works", as long as it is "in sync" with dns. But when the hostname changes in dns, e.g. because the dhcp client requested it to change, the additions break the resolving process, because the resolver still returns the obsolete data from /etc/hosts instead from dns. OK, as long as NM is running, you can still update /etc/hosts to bring it in sync. But you have to revert all the /etc/hosts changes at exit of NM, because it breaks everything else later -- ifup in this case.
And in Comment 9, if the NM don't change the hostname in hosts, so who will in charge of it? Or which one don't need changed by NM?
You can change the hostname at runtime using e.g. "hostname $newone" [after verifying that at least the PTR record contains it], but don't define it in /etc/hosts. DNS server will provide the correct name for your host / reverse of IP. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c18 Marius Tomaschewski <mt@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED CC| |lnussel@novell.com InfoProvider|mt@novell.com | --- Comment #18 from Marius Tomaschewski <mt@novell.com> 2011-02-15 09:54:03 UTC --- (In reply to comment #16)
commit 39eed50e470d6f41222e40ce0276b898e8c84dc4 I view the soucecode in the upstream, and found no touching the /etc/hosts now.
Good.
And I build a package in my repo, you can get the rpms for testing. http://download.opensuse.org/repositories/home:/BinLi:/branches:/GNOME:/Fact... If it's okay, I'll put it into the RC2.
When it does not touch /etc/hosts any more, please submit for RC2. Thanks! BTW: nss-myhostname sounds interessting. I think, we have to take closer look at it. Perhaps it solves some of the problems in this area... -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c19 --- Comment #19 from Marius Tomaschewski <mt@novell.com> 2011-02-15 10:04:28 UTC --- (In reply to comment #18)
BTW: nss-myhostname sounds interessting. I think, we have to take closer look at it. Perhaps it solves some of the problems in this area...
Ahm... no. AFAIS it does not make anything differently than to fake the 127.0.0.2 entry -- just without the entry in /etc/hosts. I think 127.0.0.2 entry in /etc/hosts is better than this, because it is at least visible to the user... -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=667265 https://bugzilla.novell.com/show_bug.cgi?id=667265#c20 Li Bin <bili@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #20 from Li Bin <bili@novell.com> 2011-02-15 11:25:17 UTC --- Done. 61236 State:new By:BinLi When:2011-02-15T12:24:44 submit: home:BinLi:branches:GNOME:Factory/NetworkManager -> GNOME:Factory Descr: stop touching the /etc/hosts(bnc#667265) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com