aiccu autostart doesn't work in ubuntu 10.10
![]()
I've installed aiccu with the package manager, and it works fine except autostart at boot. I've checked that the script is in place (/etc/init.d/aiccu), it has execution permission. I've reissued 'sudo update-rc.d aiccu' and the output is:
update-rc.d: warning: /etc/init.d/aiccu missing LSB information
update-rc.d: see <http://wiki.debian.org/LSBInitScripts>
System start/stop links for /etc/init.d/aiccu already exist.
what can I do? thanks
aiccu autostart doesn't work in ubuntu 10.10
Check that it is started after the network is up.
Of course, you should check the log files if it tells you something about why it does not continue.
aiccu autostart doesn't work in ubuntu 10.10
![]()
sorry, I'm pretty new to linux and I don't know how to check and fix the load order, and I'm not sure on what logs your are referring to.
aiccu autostart doesn't work in ubuntu 10.10
sorry, I'm pretty new to linux and I don't know how to check and fix the load order,
See for instance How-To: Managing services with update-rc.d
and I'm not sure on what logs your are referring to.
see /var/log/ and then any file in there, you can do a 'grep aiccu /var/log/*' or just check the messages, syslog, daemon files which most likely contains the output.
aiccu autostart doesn't work in ubuntu 10.10
![]()
Add this to /etc/init.d/aiccu right after the #! /bin/sh line.
### BEGIN INIT INFO
# Provides: aiccu
# Required-Start: $local_fs $remote_fs $syslog $network $time $named
# Required-Stop: $local_fs $remote_fs $syslog $network $time $named
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: SixXS Automatic IPv6 Connectivity Client Utility
# Description:
# This client configures IPv6 connectivity without having to
# manually configure interfaces etc. A SixXS account or an account
# of another supported tunnel broker and at least one tunnel are
# required. These can be freely requested from the SixXS website
# at no cost. For more information about SixXS check their homepage.
### END INIT INFO
|