mirror of https://github.com/archzfs/archzfs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
359 B
12 lines
359 B
post_install() {
|
|
# https://bugs.archlinux.org/task/52901
|
|
echo '>>> If DKMS fails to build ZFS, run this command:'
|
|
echo -e '# dkms install -m zfs/2017.12.08.r3208.4e9b15696 -k <kernel_version>\n'
|
|
|
|
echo 'If you are using ZFS on your root partition run this afterwards:'
|
|
echo '# mkinitcpio -P'
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install "$1"
|
|
}
|
|
|