mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 22:25:14 +08:00
14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
|
post_install() {
|
||
|
mkdir -p /boot/EFI/gummiboot
|
||
|
/usr/bin/gummiboot update
|
||
|
echo ":: Run '/usr/bin/gummiboot install' to make gummiboot your default bootloader"
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
/usr/bin/gummiboot update
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
/usr/bin/gummiboot remove
|
||
|
}
|