8 lines
143 B
Bash
8 lines
143 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo Restoring /kernel.old ...
|
||
|
install -m 555 -o root -g wheel -fschg /kernel.old /kernel
|
||
|
rm -rf /modules
|
||
|
mv /modules.old /modules
|
||
|
|