回答:
sudoersファイルは時間ベースの制限をサポートしていませんが、簡単な方法があります。/etc/sudoers.d/
(でsudo visudo -f /etc/sudoers.d/yourfile
)に変更を加えたファイルを作成します。
ファイルに追加します(例:)file.sh
次を
mv /etc/sudoers.d/yourfile /etc/sudoers.d/.yourfile
そして、これはあなたの変更を無効にします:
sudo at -f file.sh 2pm + 2 days
例:
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
この場合、コマンドを発行してから2日後の午後2時にファイルを移動します。at
マニュアルは、いくつかのオプションがあります(次のような時間、日、週、月、年、キーワードを使用するか、加算/減算periodesを追加することができます)。あなたがそれを理解していることを確認するためのオプションを備えたいくつかのテストを行います(考慮すべきこと:at
その日の午後2時前か午後2時以降に開始するかどうかは重要です)。
at
また、再起動後も存続するため、この種のことを行うのに適したツールです。そして、アクセスを切り替えることができます...
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
そして、そのユーザーを夢中にさせます(wtfが今私はこれを行うことができます)。
のREADME /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.
これを正しく読んだ場合、「。」が付いたファイルは実行されません。名前のどこでも。そこで、最初のmv
コマンドで「。」を配置しました。前も見えないようにします。正しく仮定された場合、「。」を配置できます。どこでも。「〜」に注意してください。これは、gEditのようなエディターによって「バックアップ」機能として使用されます。
at
デフォルトではインストールされません。インストールする
sudo apt-get install at
/etc/sudoers.d
、他のユーザーが使用しない新しいファイルを作成します。
mv
なかったと思うcp
。