#!/bin/sh # # /etc/rc.local - Local startup commands # # Run scripts in /etc/boot.d if present if [ -d /etc/boot.d ]; then for script in /etc/boot.d/*; do [ -x "$script" ] && "$script" done fi # End of file