Your message dated Wed, 25 Apr 2012 14:04:38 -0500
with message-id <20120425190438.GA3570@burratino>
and subject line Re: ifupdown initscripts myreadlink fails to handle nested
symlinks (/run)
has caused the Debian Bug report #625204,
regarding breaks when /run is used
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 ow...@bugs.debian.org
immediately.)
--
625204: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=625204
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ifupdown
Version: 0.6.4-4.9
Severity: critical
/etc/network/run/ in some cases is a symlink to /dev/shm/network/, but
when /dev/shm/ is a symlink to /run/shm/ the directory is created at the
wrong time of the boot process and /etc/init.d/networking fails to bring
up the interfaces.
The init scripts need to be rearranged (and please move
/etc/init.d/networking from netbase to ifupdown in the process!) and
ifupdown should depend on the new initscripts package with /run support
to allow cleaning up some cruft.
--
ciao,
Marco
signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Version: 0.7~rc1+experimental
# doesn't break unrelated software
severity 625204 grave
quit
Hi,
Niall Walsh wrote:
> if a system is using /run then /dev/shm is a symlink pointing to /run/shm and
> ifupdowns initscript will fail to create /etc/network/run
Thanks for reporting it. I suspect this was fixed in 0.7~rc1+experimental:
* Take networking init script over from netbase package.
- Merge ifupdown initscript in.
The code is as follows:
RUN_DIR="/run/network"
IFSTATE="$RUN_DIR/ifstate"
[...]
if [ ! -d "$RUN_DIR" ] ; then
if ! mkdir -p "$RUN_DIR" ; then
log_failure_msg "can't create $RUN_DIR"
exit 1
fi
fi
--- End Message ---