Bug 28498 - interfaces are disabled on changing runlevels
Summary: interfaces are disabled on changing runlevels
Status: NEW
Alias: None
Product: Branch t6
Classification: Distributions
Component: livecd-save-nfs (show other bugs)
Version: не указана
Hardware: all Linux
: P3 normal
Assignee: Anton V. Boyarshinov
QA Contact: QA t6
URL:
Keywords:
Depends on: 28499
Blocks: 26681
  Show dependency tree
 
Reported: 2013-02-02 17:40 MSK by Ivan Zakharyaschev
Modified: 2013-02-02 17:41 MSK (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ivan Zakharyaschev 2013-02-02 17:40:29 MSK
(This problem would also affect t6 and Sisyphus, because they have the same release of the involved package.)

+++ This bug was initially created as a clone of Bug #26681 +++

livecd-save-nfs-0.3-alt4 in Simply Linux 6.0.1RC2 DVD live system

/etc/init.d/livecd-save-nfs is executed in the LiveCD system when changing runlevels (e.g., "telinit 3" or "telinit 5" afterwards), and if we had a configured iface managed by NetworkManager, it stops working:

/etc/net/ifaces/eth0/options is created:

# cat /etc/net/ifaces/eth0/options 
NM_CONTROLLED=no
BOOTPROTO=dhcp
DHCP_ARGS=-p
# 

this passes the management of this interface from NetworkManager to etcnet, but due to:

# fgrep DISABLED /etc/net/ifaces/default/options-eth 
DISABLED=yes
# 

etcnet doesn't consider it as an iface managed by etcnet. So, "ifup eth0", "service network restart", "service NetworkManager restart" give no result.


One workaround, after you understood this, is to append:

echo DISABLED=no >> /etc/net/ifaces/eth0/option

and manage it through etcnet (Can this be done by the script from this package? as a solution for this problem.), or to remove this newly created /etc/net/ifaces/eth0/ and return to the default situation.