2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
repo/extra/sudo/post-install

20 lines
584 B
Plaintext
Raw Normal View History

2020-05-18 08:13:42 +00:00
#!/bin/sh
cat <<EOF
# Nice sudo options to make running the package manager a
# little easier. These options go in /etc/sudoers.
# Disable per-terminal sudo. The password won't need to
# be re-entered between terminal windows.
Defaults timestamp_type=global
# Reduce password input frequency. How long sudo should
# cache a valid password entry (In minutes, 5 is default).
# (Debian's default is 15: https://wiki.debian.org/sudo)
Defaults timestamp_timeout=10
# Prevent the password prompt from timing out if left
# alone with no input for too long.
Defaults passwd_timeout=0
EOF