mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-09 20:28:08 +00:00
11 lines
199 B
Bash
Executable File
11 lines
199 B
Bash
Executable File
#! /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
|