Hide Forgot
Description of problem: rc.local seems to be ignored at boot despite following the docs: "The /etc/rc.d/rc.local local customization script is no longer included by default. Administrators who need this functionality merely have to create this file, make it executable, and it will run on boot." from http://docs.fedoraproject.org/en-US/Fedora/16/html/Release_Notes/sect-Release_Notes-Changes_for_Sysadmin.html # ls -la /etc/rc.d/rc.local -rwxr-xr-x. 1 root root 23 Dec 17 19:10 /etc/rc.d/rc.local # cat /etc/rc.d/rc.local date > /tmp/date.txt & # reboot # cat /tmp/date.txt cat: /tmp/date.txt: No such file or directory Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
/etc/rc.d/rc.local needs to start with a valid shell script header, such as: "#!/bin/sh"