Hi, I am running a program called rundns, which checks my dymanic ip address and adjusts it to keep my domain name pointed to my ip. I'd like to have it run on boot to runlevels 3 & 5. I downloaded a script from the developer's web site and advised me to place it in /etc/init./rc3.d and rc5.d respectively. Problem is that dosen't seem to work. The script is called S98rundns and has permissions of -rwxr-xr-x. I notice that most other scripts here are links to other files, but not sure how to set this up. In any case rundns does not run on boot to runlevel 5, or init 3. It shows as a failed service. The rundns binary is in /usr/bin and works find when started with the command line. Copy of the script as follows... ---------------- /#!/bin/sh/ /# Change this if your rundns executable is/ /# not in the directory /usr/bin/ RUNDNS=/usr/bin/rundns *case* "$1"* in* 'start'*)* /# Start rundns/ $RUNDNS /etc/rundns.conf *;;* 'stop'*)* /# Stop rundns/ $RUNDNS --stop *echo* *;;* **)* *echo* "Usage: $0 {start|stop}" *exit* 1 esac *exit* 0 ---------------- Any help would would be appreciated. Jim F -- Check the headers for your unsubscription address For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com Please read the FAQs: suse-linux-e-faq@suse.com