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