Community,
in Debian based distributions, one can easily manage init-scripts, i.e. placing links from /etc/init.d/ to /etc/rc(0..6).d/ directories respectively removing them (to enable/disable services in appropriate runlevels) with a script called "update-rc.d". Is there an equivalent for openSUSE available?
In Debian based distributions it works like that:
Code:
update-rc.d <service> defaults
to create the appropriate links in /etc/rc(0..6).d/ and
Code:
update-rc.d -f <service> remove
to remove them.
Obviously these commands are just the basics, but I think you got the idea.
Thanks!