É certamente possível remover a necessidade de digitar a senha do sudo para comandos específicos ou até scripts inteiros.
Seu caminho sugerido de armazenar a senha em uma variável local no script é bastante imprudente. Qualquer pessoa com direitos de leitura para /proc/<pid>/environ
pode ler as variáveis locais. Qualquer pessoa que obtenha acesso de leitura a um script, com credenciais codificadas, poderá usar essas credenciais para escalar privilégios para root e possuir seu sistema. Em um sistema de usuário único, isso ainda é insensato, pois há cada vez mais ataques remotos direcionados aos usuários do Linux.
Sem as especificidades do seu script, só posso aconselhá-lo a ler o Wiki da Comunidade do Ubuntu - Sudoers . Em seguida, modifique o arquivo sudoers executando sudo visudo
para adicionar os comandos específicos ao arquivo.
Provavelmente, você deve adicionar duas linhas, uma, para adicionar um alias de comando e a segunda, para autorizar os usuários a executarem esses comandos.
Um exemplo de permitir que um usuário específico, bob, execute comandos de desligamento selecionados sem uma senha.
Cmnd_Alias SHUTDOWN_CMDS = /sbin/poweroff, /sbin/halt, /sbin/reboot
bob ALL=(ALL) NOPASSWD: SHUTDOWN_CMDS
O script a seguir é um exemplo de como incluir em um script a capacidade de instalar, desinstalar ou editar as linhas de exemplo em /etc/sudoers
.
#!/bin/bash
#Set Script Name variable
SCRIPT='basename ${BASH_SOURCE[0]}'
#Initialize variables to default values.
OPT_i=i
OPT_u=u
OPT_e=e
OPT_m=m
#Set fonts for Help.
NORM='tput sgr0'
BOLD='tput bold'
REV='tput smso'
#Help function
function HELP {
echo -e \n"Help documentation for ${BOLD}${SCRIPT}.${NORM}"\n
echo -e "${REV}Basic usage:${NORM} ${BOLD}$SCRIPT file.ext${NORM}"\n
echo "Command line switches are optional. The following switches are recognized."
echo "${REV}-1${NORM} --Installs lines in /etc/sudoers to allow script to be run without entering password multiple times."
echo "${REV}-u${NORM} --Unistalls lines in /etc/sudoers."
echo "${REV}-e${NORM} --Launces visudo to edit /etc/sudoers."
echo "${REV}-m${NORM} --Launces main."
echo -e "${REV}-h${NORM} --Displays this help message. No further functions are performed."\n
exit 1
}
#Install function
function INSTALL {
echo "launching Install"
echo -e '#script_append'\n'Cmnd_Alias SHUTDOWN_CMDS = /sbin/poweroff, /sbin/halt, /sbin/reboot'\n'bob ALL=(ALL) NOPASSWD: SHUTDOWN_CMDS' | sudo EDITOR='tee -a' visudo
}
#Unnstall function
function UNINSTALL {
echo "launching uninstall"
bash -c 'printf ",g/^#script_append$/d\nw\nq\n" | sudo EDITOR='ed' visudo'
bash -c 'printf ",g/^Cmnd_Alias.*reboot$/d\nw\nq\n" | sudo EDITOR='ed' visudo'
bash -c 'printf ",g/^bob ALL=(ALL) NOPASSWD: SHUTDOWN_CMDS$/d\nw\nq\n" | sudo EDITOR='ed' visudo'
}
#Main function
function MAIN {
echo "launching editor via main"
sudo visudo
}
#Check the number of arguments. If none are passed, print help and exit.
NUMARGS=$#
echo -e \n"Number of arguments: $NUMARGS"
if [ $NUMARGS -eq 0 ]; then
HELP
fi
### Start getopts code ###
#Parse command line flags
#If an option should be followed by an argument, it should be followed by a ":".
#Notice there is no ":" after "h". The leading ":" suppresses error messages from
#getopts. This is required to get my unrecognized option code to work.
while getopts ":iuemh" FLAG; do
case "${FLAG}" in
i) #set option "i"
OPT_i=${OPTARG}
echo "-i used: $OPTARG"
if sudo grep -q '#script_append' /etc/sudoers
then
echo "Sudoers apperes to have already been installed"
exit
else
INSTALL
fi
;;
u) #set option "u"
OPT_u=$OPTARG
echo "-u used: $OPTARG"
UNINSTALL
;;
e) #set option "e"
OPT_e=$OPTARG
echo "-e used: $OPTARG"
sudo visudo
;;
m) #set option "m"
OPT_m=$OPTARG
echo "-m used: $OPTARG"
MAIN
;;
h) #show help
HELP
;;
\?) #unrecognized option - show help
echo -e \n"Option -${BOLD}$OPTARG${NORM} not allowed."
HELP
#If you just want to display a simple error message instead of the full
#help, remove the 2 lines above and uncomment the 2 lines below.
#echo -e "Use ${BOLD}$SCRIPT -h${NORM} to see the help documentation."\n
#exit 2
;;
esac
done
shift $((OPTIND-1)) #This tells getopts to move on to the next argument.
### End getopts code ###