# Linux - configure startup script in SUSE ###### tags: `linux` `suse` ``` Configure startup script of OpenSUSE The difference between the Ubuntu and the SUSE is the SUSE does not have rc.local file in /etc folder. To configure startup script of SUSE, you need to configure '/etc/init.d/after.local' file. It will be executed after rc5.d finished. Other files that will be automatically executed when boot or shutdown. 1. /etc/init.d/boot.local - execute before rc5.d executed 2. /etc/init.d/halt.local, - execute when poweroff 3. /etc/init.d/before.local - execute after init, but before start any runlevel !!! before.local and after.local files are not existed by default, so you have to create them by you-self. ```