summaryrefslogtreecommitdiff
path: root/vmdebootstrap
diff options
context:
space:
mode:
authorNeil Williams <codehelp@debian.org>2015-04-10 07:23:57 +0100
committerNeil Williams <codehelp@debian.org>2015-04-10 07:23:57 +0100
commit6a4d4e515740b17d54db2d8e423d47855ae79260 (patch)
tree10730cc2d3178acb9e9bcb167331473d0fb2946d /vmdebootstrap
parentef48041001356d779cf0cf1eb12e8a34d84a2af6 (diff)
downloadvmdebootstrap-6a4d4e515740b17d54db2d8e423d47855ae79260.tar.gz
install grub-pc instead of grub2
Ubuntu only has grub-pc in its main repository while the grub2 transitional package is in universe. To support creating Ubuntu images install grub-pc. This works for both Debian and Ubuntu. Jan Gerber <j@mailb.org>
Diffstat (limited to 'vmdebootstrap')
-rwxr-xr-xvmdebootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmdebootstrap b/vmdebootstrap
index a9127ae..63ade3a 100755
--- a/vmdebootstrap
+++ b/vmdebootstrap
@@ -418,7 +418,7 @@ class VmDebootstrap(cliapp.Application): # pylint: disable=too-many-public-meth
include.append('acpid')
if self.settings['grub']:
- include.append('grub2')
+ include.append('grub-pc')
if not self.settings['no-kernel']:
if self.settings['arch'] == 'i386':