You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
376 B
14 lines
376 B
#!/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
|
|
|
|
chkconfig syslogd on 2>&1
|
|
for i in network random; do chkconfig $i on; done
|
|
for i in fbsetfont netfs rawdevices; do chkconfig $i off; done
|
|
:
|
|
|