mirror of
https://github.com/KeithDHedger/LFSPkgBuilds.git
synced 2026-01-27 08:04:20 +00:00
14 lines
267 B
Bash
Executable File
14 lines
267 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
#©keithhedger Thu Nov 7 13:55:21 GMT 2015 kdhedger68713@gmail.com
|
|
|
|
. /usr/share/LFSPkg/LFSFunctions
|
|
|
|
mkdir -vp /etc/sudoers.d || true
|
|
|
|
cat > /etc/sudoers.d/sudo << "EOF"
|
|
Defaults secure_path="/usr/bin:/bin:/usr/sbin:/sbin"
|
|
%wheel ALL=(ALL) ALL
|
|
EOF
|
|
|