mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-11 05:07:09 +00:00
11 lines
199 B
Plaintext
11 lines
199 B
Plaintext
|
#! /bin/sh -ex
|
||
|
|
||
|
ARCH=$(dpkg --print-architecture)
|
||
|
|
||
|
case $ARCH in
|
||
|
i386|amd64)
|
||
|
rm -f /usr/sbin/grub-install
|
||
|
dpkg-divert --quiet --remove --rename /usr/sbin/grub-install
|
||
|
;;
|
||
|
esac
|