Imported using git-ubuntu import.
Changelog parent: 8a676fab23
New changelog entries:
[ James Hunt ]
* ubuntu-core:
- Don't remove doc to be kind to devs.
- Boot with systemd (temporary method until we have systemd-sysv).
- Configure first network interface.
impish
parent
8a676fab23
commit
5264712d26
@ -0,0 +1,9 @@
|
||||
#!/bin/sh -x
|
||||
|
||||
# Boot using systemd and disable quiet boot
|
||||
# to see what is happening.
|
||||
systemd=/lib/systemd/systemd
|
||||
sed \
|
||||
-e 's,^\([ ]*GRUB_CMDLINE_LINUX\)=""$,\1="init=$systemd",g' \
|
||||
-e 's,^\([ ]*GRUB_CMDLINE_LINUX_DEFAULT\)="quiet splash",\1="",g' \
|
||||
/etc/default/grub
|
@ -0,0 +1,9 @@
|
||||
#!/bin/sh -x
|
||||
|
||||
if=eth0
|
||||
|
||||
# Manually configure the first ethernet device
|
||||
cat >/etc/network/interfaces.d/"$if"<<EOT
|
||||
auto $if
|
||||
iface $if inet dhcp
|
||||
EOT
|
@ -1,11 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# remove-documentation: Remove unnecessary documentation to reduce disk usage
|
||||
#
|
||||
# Author: Alex Chiang <achiang@canonical.com>
|
||||
# Date : November 9, 2010
|
||||
|
||||
echo "Removing documentation..."
|
||||
find /usr/share/doc -depth -type f ! -name copyright|xargs rm || true
|
||||
find /usr/share/doc -empty|xargs rmdir || true
|
||||
rm -rf /usr/share/man /usr/share/groff /usr/share/info /usr/share/lintian /usr/share/linda /var/cache/man
|
Loading…
Reference in new issue