I have a python script that I would like to be used as a service in Suse Linux.
I tried creating a script.conf file in /etc/init.d that looks like this:
description "File service"
author "Me"
start on runlevel [234]
stop on runlevel [0156]
chdir /app/file/bin
exec /app/file/bin/script.py
respawn
How do I test if this script is working ? I have no idea what command to type to start running this service. Any answers to this will be greatly appreciated thanks.