I noticed I have a very faulty rc.local and would like to have the package releasers version right now, and not when it has to upgrade. Can someone hint me to the options, or the full command it needs to renew/reset these essential files?
Asked
Active
Viewed 89 times
0
TheWanderer
- 19,525
- 12
- 52
- 65
xubunuser
- 21
1 Answers
0
Per default, there is nothing in /etc/init.d/rc.local, only a she-bang and a exit 0, which is very important.
printf '#!/bin/sh -e\nexit 0\n' | sudo tee /etc/rc.local
A.B.
- 92,125