custom startup script

Reindl Harald h.reindl at thelounge.net
Wed Jul 10 16:39:53 UTC 2013



Am 10.07.2013 18:25, schrieb Jerome Yanga:
> On Wed, Jul 10, 2013 at 9:19 AM, Jerome Yanga <jerome.yanga at gmail.com <mailto:jerome.yanga at gmail.com>> wrote:
> 
>     Hi all!
> 
>     In the past, I would create custom startup scripts and create a link in the /etc/rc.d/rc5.d/ directory.
> 
>     Is this still a good practice?  If not, please let me know where I should put my custom startup scripts.

bad practice these days, systemd-units are much more powerful
and for oneshot-scripts mostly simpler in the syntax as
the sysv-init stuff

http://0pointer.de/public/systemd-man/systemd.service.html
http://0pointer.de/public/systemd-man/systemd.unit.html
http://0pointer.de/public/systemd-man/systemd.exec.html

systemctl --help
man systemctl
________________________

example below enabled with "systemctl enable network-bonding-bridge.service"

[root at rh:~]$ cat /etc/systemd/system/network-bonding-bridge.service
[Unit]
Description=Network Bonding Bridge
After=network.service
Before=vmware.service

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/local/bin/bondig-bridge.sh start
ExecStop=/usr/local/bin/bondig-bridge.sh stop

[Install]
WantedBy=multi-user.target

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 263 bytes
Desc: OpenPGP digital signature
URL: <http://lists.fedoraproject.org/pipermail/users/attachments/20130710/caf1c424/attachment.sig>


More information about the users mailing list