12 lines
331 B
Plaintext
12 lines
331 B
Plaintext
|
#!/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
|
||
|
|
||
|
for i in network random syslogd random; do chkconfig $i on; done
|
||
|
for i in fbsetfont netfs rawdevices; do chkconfig $i off; done
|
||
|
:
|