Jak zezwolić na polecenie sudo na określony czas? czy istnieje jakiś sposób nadania uprawnień do wykonania określonego polecenia przez 2 dni tylko w pliku sudoers.?
Plik sudoers nie obsługuje ograniczeń czasowych, ale istnieje prosta metoda. Utwórz plik ze swoimi zmianami w /etc/sudoers.d/
(z sudo visudo -f /etc/sudoers.d/yourfile
):
Dodaj do pliku (przykład:) file.sh
następujące
mv /etc/sudoers.d/yourfile /etc/sudoers.d/.yourfile
A to wyłączy twoje zmiany:
sudo at -f file.sh 2pm + 2 days
Przykład:
at -f file.sh 2pm + 2 days
warning: commands will be executed using /bin/sh
job 4 at Thu Oct 15 14:00:00 2015
W takim przypadku plik zostałby przeniesiony o godzinie 14:00 po 2 dniach od wydania polecenia. at
Instrukcja ma kilka opcji (można użyć raz, dni, tygodnie, miesiące, lata, słowa kluczowe, jak obok lub dodaj / odejmij periodes). Przeprowadź kilka testów z opcją upewnienia się, że to rozumiesz (Coś do rozważenia: ma to znaczenie, jeśli zaczynasz at
przed lub po 14.00 w ten sam dzień.)
at
przetrwa także restarty, więc jest dobrym narzędziem do tego typu rzeczy. I możesz przełączać dostęp ...
sudo mv /etc/sudoers.d/.yourfile /etc/sudoers.d/yourfile | at 2pm + 2 days
sudo mv /etc/sudoers.d/yourfile /etc/sudoers.d/.yourfile | at 2pm + 4 days
sudo mv /etc/sudoers.d/.yourfile /etc/sudoers.d/yourfile | at 2pm + 6 days
sudo mv /etc/sudoers.d/yourfile /etc/sudoers.d/.yourfile | at 2pm + 8 days
i zmusić tego użytkownika do szaleństwa (wtf teraz mogę to zrobić).
README w /etc/sudoers/
:
# As of Debian version 1.7.2p1-1, the default /etc/sudoers file created on
# installation of the package now includes the directive:
#
# #includedir /etc/sudoers.d
#
# This will cause sudo to read and parse any files in the /etc/sudoers.d
# directory that do not end in '~' or contain a '.' character.
#
# Note that there must be at least one file in the sudoers.d directory (this
# one will do), and all files in this directory should be mode 0440.
#
# Note also, that because sudoers contents can vary widely, no attempt is
# made to add this directive to existing sudoers files on upgrade. Feel free
# to add the above directive to the end of your /etc/sudoers file to enable
# this functionality for existing installations if you wish!
#
# Finally, please note that using the visudo command is the recommended way
# to update sudoers content, since it protects against many failure modes.
# See the man page for visudo for more information.
Jeśli przeczytam to poprawnie, nie wykona żadnego pliku z „.” gdziekolwiek w nazwie. Więc pierwsze mv
polecenie umieściłem „.” z przodu, dzięki czemu jest również niewidoczny. Jeśli poprawnie założono, możesz umieścić „.” gdziekolwiek. Ostrożnie z „~”, ten jest używany jako funkcja „kopii zapasowej” przez edytorów takich jak gEdit.
at
nie jest instalowany domyślnie. Żeby zainstalować
sudo apt-get install at
/etc/sudoers.d
którym inni użytkownicy nie będą używać.mv
, niecp
.