livecd-rootfs/live-build/ubuntu-desktop-next/hooks/03-boot_with_systemd.chroot
Didier Roche 04b0ecd5a6 Import patches-unapplied version 2.306 to ubuntu/wily-proposed
Imported using git-ubuntu import.

Changelog parent: f5af78966b977349a8f7dae9fd2fcc042246d3bc

New changelog entries:
  * Create hooks and image build config for the ubuntu-desktop-next
    new based on snappy image.
2015-05-29 10:08:20 +00:00

12 lines
342 B
Bash
Executable File

#!/bin/sh -x
# Boot using systemd and disable quiet boot
# to see what is happening.
systemd=/lib/systemd/systemd
if [ -f /etc/default/grub ]; then
sed -i \
-e "s,^\\([ ]*GRUB_CMDLINE_LINUX\\)=\"\"$,\\1=\"init=$systemd\",g" \
-e 's,^\([ ]*GRUB_CMDLINE_LINUX_DEFAULT\)="quiet splash",\1="",g' \
/etc/default/grub
fi