-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently does not need any conditions, but may later need to check for loaded modules and other capabilities. Signed-off-by: Joachim Wiberg <[email protected]>
- Loading branch information
Showing
2 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
run [S] /lib/infix/probe -- Probing system information | ||
run [S] <pid/syslogd> /lib/infix/sysctl-sync-ip-conf -- | ||
run [S] <pid/syslogd> /lib/infix/nameif -- Probing network interfaces |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
# Probe for various types of harware features | ||
|
||
if dmesg |grep -q QEMU || test -d /sys/module/qemu_fw_cfg; then | ||
initctl cond set qemu | ||
fi |