forked from kiss-community/kiss
kiss: find cmd_su in system if KISS_SU is unset
This commit is contained in:
parent
2f16432993
commit
0ad76a03df
7
kiss
7
kiss
@ -1904,7 +1904,12 @@ main() {
|
|||||||
|
|
||||||
# Figure out which 'sudo' command to use based on the user's choice or what
|
# Figure out which 'sudo' command to use based on the user's choice or what
|
||||||
# is available on the system.
|
# is available on the system.
|
||||||
cmd_su=${KISS_SU:-su}
|
cmd_su=${KISS_SU:-"$(
|
||||||
|
command -v ssu ||
|
||||||
|
command -v sudo ||
|
||||||
|
command -v doas ||
|
||||||
|
command -v su
|
||||||
|
)"} || cmd_su=su
|
||||||
|
|
||||||
# Figure out which utility is available to dump elf information.
|
# Figure out which utility is available to dump elf information.
|
||||||
cmd_elf=${KISS_ELF:-"$(
|
cmd_elf=${KISS_ELF:-"$(
|
||||||
|
Loading…
Reference in New Issue
Block a user