You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
525 B
24 lines
525 B
# only root
|
|
all root
|
|
|
|
# this should fire for beta only
|
|
!cap_chown beta
|
|
|
|
# the next one should snag gamma since beta done
|
|
cap_setuid,cap_chown @three
|
|
|
|
# neither of these should fire
|
|
cap_chown beta gamma
|
|
|
|
# just alpha
|
|
!cap_chown,cap_setuid @one
|
|
|
|
# not this one
|
|
^cap_setuid alpha
|
|
|
|
# this should fire
|
|
^cap_chown,^cap_setgid,!cap_setuid delta
|
|
|
|
# not this one
|
|
cap_setuid @four
|