ac489474a3
...if it's a systemd-based image; no real error then.
11 lines
272 B
Bash
Executable File
11 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
# VMs might have no means to communicate with the outer
|
|
# world except for networking
|
|
|
|
[ -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
|
|
:
|