Hello!
Im new with suse, and looking for help to auto start the no-ip client.
I configured it but it only run when i manually start it.
Thx,
Fowardly
Hello!
Im new with suse, and looking for help to auto start the no-ip client.
I configured it but it only run when i manually start it.
Thx,
Fowardly
Hi
What version of openSUSE, if the latest release (13.2) does it provide a systemd service file?
Else what is the command you run manually?
For systemd:
Create a systemd-File with the name noip2.service in /etc/systemd/system/ with:
[Unit]
Description=DynDNS by NoIP
[Service]
Type=forking
ExecStart=/usr/local/bin/noip2
[Install]
WantedBy=multi-user.target
Enable at Boot:
systemctl enable noip2.service
Start:
systemctl start noip2.service
Status:
systemctl status noip2.service