commit: 6b54da4cc0b85aaed4e4546bbb0893476fb6835c Author: Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk> AuthorDate: Wed Jan 3 15:37:03 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Jan 7 09:42:33 2024 +0000 URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=6b54da4c
net.lo.in: replace "type" bashism with "command" Closes: https://bugs.gentoo.org/844178 Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk> Closes: https://github.com/gentoo/netifrc/pull/50 Signed-off-by: Sam James <sam <AT> gentoo.org> init.d/net.lo.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/net.lo.in b/init.d/net.lo.in index 0bb69f3..afba99f 100644 --- a/init.d/net.lo.in +++ b/init.d/net.lo.in @@ -902,7 +902,7 @@ stop() yesno ${module} && _down 2>/dev/null fi - type resolvconf >/dev/null 2>&1 && resolvconf -d "${IFACE}" 2>/dev/null + command -v resolvconf >/dev/null && resolvconf -d "${IFACE}" 2>/dev/null if [ "$(command -v "postdown")" = "postdown" ]; then ebegin "Running postdown"
