Skip to content
Snippets Groups Projects
Commit aa283d4f authored by Daniel Schulte's avatar Daniel Schulte
Browse files

Added workaround for launchpad bug #1373033 (don't update ubiquity)

parent e18dce16
No related branches found
No related tags found
No related merge requests found
...@@ -121,8 +121,19 @@ function copy_modprobe_d() ...@@ -121,8 +121,19 @@ function copy_modprobe_d()
update-initramfs -u update-initramfs -u
} }
function prevent_ubiquity_update()
{
echo "ubiquity hold" | dpkg --set-selections
}
function allow_ubiquity_update()
{
echo "ubiquity install" | dpkg --set-selections
}
divert_initctl divert_initctl
prevent_ubiquity_update #required because of launchpad bug #1373033
prepare_install prepare_install
copy_modprobe_d copy_modprobe_d
install_packages install_packages
...@@ -136,5 +147,7 @@ patch_all "$SCRIPT_DIR/patches/" "/" ...@@ -136,5 +147,7 @@ patch_all "$SCRIPT_DIR/patches/" "/"
#echo "compiling glib2 schemas..." #echo "compiling glib2 schemas..."
#glib-compile-schemas /usr/share/glib-2.0/schemas #glib-compile-schemas /usr/share/glib-2.0/schemas
allow_ubiquity_update #required because of launchpad bug #1373033
revert_initctl revert_initctl
finalize finalize
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment