mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 14:47:17 +08:00
18 lines
276 B
Plaintext
18 lines
276 B
Plaintext
post_install() {
|
|
echo -n "Generating grub.cfg.example config file... "
|
|
grub-mkconfig -o /boot/grub/grub.cfg.example 2> /dev/null
|
|
echo "done."
|
|
|
|
cat << EOF
|
|
An example config file is created at /boot/grug/grub.cfg.example
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|