12 lines
192 B
Plaintext
12 lines
192 B
Plaintext
|
#! /bin/bash
|
||
|
|
||
|
ifclass -o CENTOS SLC && exit 0
|
||
|
|
||
|
ifclass -o GRUB_PC GRUB_EFI && exit 0
|
||
|
|
||
|
if [ -d /sys/firmware/efi ]; then
|
||
|
echo GRUB_EFI
|
||
|
elif ifclass -o I386 AMD64 ; then
|
||
|
echo GRUB_PC
|
||
|
fi
|