b95caa9b73
A minimal chroot supporting extension via apt-get; vitals if built on Sisyphus as of Jan 16, 2012: i586: 13M tar.xz, 58M chroot (33M w/o /usr/share/{doc,locale,man}) x86_64: 14M tar.xz, 60M chroot (35M w/o /usr/share/{doc,locale,man}) Trivial fixups (extra checks) added to two script hooks.
14 lines
365 B
Bash
Executable File
14 lines
365 B
Bash
Executable File
#!/bin/sh
|
|
# VEs typically have no means to communicate with the outer
|
|
# world except for networking; still this might need some
|
|
# more tweaking for networkless LXC case
|
|
|
|
# candidates:
|
|
# off: keytable
|
|
|
|
[ -x /sbin/chkconfig ] || exit 0
|
|
|
|
for i in network random syslogd random; do chkconfig $i on; done
|
|
for i in fbsetfont netfs rawdevices; do chkconfig $i off; done
|
|
:
|