-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from brain-hackers/sudoer
Show asterisks in sudo
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# | ||
# This file MUST be edited with the 'visudo' command as root. | ||
# | ||
# Please consider adding local content in /etc/sudoers.d/ instead of | ||
# directly modifying this file. | ||
# | ||
# See the man page for details on how to write a sudoers file. | ||
# | ||
Defaults env_reset,pwfeedback | ||
Defaults mail_badpass | ||
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
|
||
# Host alias specification | ||
|
||
# User alias specification | ||
|
||
# Cmnd alias specification | ||
|
||
# User privilege specification | ||
root ALL=(ALL:ALL) ALL | ||
takumi ALL=(ALL:ALL) ALL | ||
|
||
# Allow members of group sudo to execute any command | ||
%sudo ALL=(ALL:ALL) ALL | ||
|
||
# See sudoers(5) for more information on "#include" directives: | ||
|
||
#includedir /etc/sudoers.d |