mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
grub now works on jessie
This commit is contained in:
parent
8d8a823092
commit
744001a9ab
1 changed files with 3 additions and 0 deletions
|
@ -3,6 +3,7 @@ from .. import phases
|
||||||
from ..tools import log_check_call
|
from ..tools import log_check_call
|
||||||
import apt
|
import apt
|
||||||
import filesystem
|
import filesystem
|
||||||
|
import kernel
|
||||||
from bootstrapvz.base.fs import partitionmaps
|
from bootstrapvz.base.fs import partitionmaps
|
||||||
import os.path
|
import os.path
|
||||||
|
|
||||||
|
@ -89,6 +90,8 @@ class InstallGrub_2(Task):
|
||||||
description = 'Installing grub 2'
|
description = 'Installing grub 2'
|
||||||
phase = phases.system_modification
|
phase = phases.system_modification
|
||||||
predecessors = [filesystem.FStab]
|
predecessors = [filesystem.FStab]
|
||||||
|
# Make sure the kernel image is updated after we have installed the bootloader
|
||||||
|
successors = [kernel.UpdateInitramfs]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
Loading…
Add table
Reference in a new issue