forked from stove/dataset
11 lines
203 B
Text
11 lines
203 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
KERNELVERSION=$(ls /lib/modules)
|
||
|
if [ -f "/boot/efi/$KERNELVERSION/initrd.cdrom" ]; then
|
||
|
mv "/boot/efi/$KERNELVERSION/initrd.cdrom" "/boot/efi/$KERNELVERSION/initrd"
|
||
|
fi
|
||
|
|
||
|
exit 0
|