mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Make the /dev/dtrace/helper node have the mode 0660. This allows
programs that refuse to run as root (pgsql) to install probes when their user is part of the wheel group. Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
8f7264f0e3
commit
ea950d20f6
1 changed files with 1 additions and 1 deletions
|
|
@ -163,7 +163,7 @@ dtrace_load(void *dummy)
|
|||
#else
|
||||
dtrace_dev = make_dev(&dtrace_cdevsw, 0, UID_ROOT, GID_WHEEL, 0600,
|
||||
"dtrace/dtrace");
|
||||
helper_dev = make_dev(&helper_cdevsw, 0, UID_ROOT, GID_WHEEL, 0600,
|
||||
helper_dev = make_dev(&helper_cdevsw, 0, UID_ROOT, GID_WHEEL, 0660,
|
||||
"dtrace/helper");
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue