我想启用 linux 支持用户 8 小时,然后自动锁定他的登录。
前端是使用 PHP 构建的,下面是我使用的..
// Enabling Support
shell_exec("sudo passwd -u support");
// Time to Expire
$date = date("h:i:s A", strtotime('+8 hours'));
$timeat = substr($date,0,2).substr($date,9,11);
// Cron setup using 'at' command
shell_exec("sudo at ".$timeat." -f /path/to/cron/disablesupport.php");
disablesupport.php 有以下代码。
//Locking Support
shell_exec("passwd -l support");
这没有用。请修复并帮助我解决问题。