Am 13.08.19 um 15:26 schrieb Wolfgang Mueller:
In the good old days, it was sufficient to make a link to the program in /etc/init.d/rc3.d and /etc/init.d/rc5.d for starting it at boot time:
/etc/init.d/rc3.d/S50My_program -> /home/wolfgang/bin/My_program /etc/init.d/rc5.d/S50My_program -> /home/wolfgang/bin/My_program
But now under Leap 15.1, that does not work any more. Is there any other way to start a program a boot time?
Thanks in advance, Wolfgang
generate a simple systemd-service for starting a programm: make a file: /etc/systemd/system/myservice.service it has to look like: [Unit] Description=myservice-should-start-something After=firewalld.service [or when ever you want to start it] [Service] Type=simple ExecStart=/usr/bin/path-to-the-file-you-like-to-start RemainAfterExit=no [Install] WantedBy=multi-user.target ------------------------ switch it on: systemctl enable myservice.service done. simoN -- www.becherer.de -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org