diff options
| author | Christos Margiolis <christos@FreeBSD.org> | 2025-10-10 13:07:23 +0000 |
|---|---|---|
| committer | Christos Margiolis <christos@FreeBSD.org> | 2025-10-10 13:07:23 +0000 |
| commit | 188ddc15e5460b3abfb2ad5492557911465bedc1 (patch) | |
| tree | 7bc612707d7b7ca9dcfa03af53063cce2a8a578b | |
| parent | b202176dc76d862f886778439b96dd1243d8b999 (diff) | |
virtual_oss: Clean up rcorder
sndiod is part of audio/sndio, so we should avoid referencing a port
utility from base.
We should also require NETWORKING for the service to start, since
virtual_oss can be configured to send audio through the network.
Sponsored by: The FreeBSD Foundation
MFC after: 1 day
Reviewed by: des, markj, emaste
Differential Revision: https://reviews.freebsd.org/D53019
| -rw-r--r-- | libexec/rc/rc.d/virtual_oss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rc/rc.d/virtual_oss b/libexec/rc/rc.d/virtual_oss index 4f5c34ce03f3..b9c830617385 100644 --- a/libexec/rc/rc.d/virtual_oss +++ b/libexec/rc/rc.d/virtual_oss @@ -1,8 +1,8 @@ #!/bin/sh # PROVIDE: virtual_oss -# REQUIRE: kld ldconfig -# BEFORE: LOGIN sndiod +# REQUIRE: NETWORKING kld ldconfig +# BEFORE: LOGIN # KEYWORD: shutdown . /etc/rc.subr |
