mirror of
https://github.com/johndoe6345789/SparkOS.git
synced 2026-05-02 17:35:05 +00:00
e1acbfc231
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
16 lines
367 B
Plaintext
16 lines
367 B
Plaintext
# SparkOS Sudoers Configuration
|
|
# Allow spark user to run any command without password
|
|
|
|
# Default settings
|
|
Defaults env_reset
|
|
Defaults secure_path="/bin:/sbin:/usr/bin:/usr/sbin"
|
|
|
|
# Root can run anything
|
|
root ALL=(ALL:ALL) ALL
|
|
|
|
# Spark user can run anything without password
|
|
spark ALL=(ALL:ALL) NOPASSWD: ALL
|
|
|
|
# Include sudoers.d directory
|
|
@includedir /etc/sudoers.d
|