Systemctl이 내부 Cronjob을 일시 중지합니다.

Systemctl이 내부 Cronjob을 일시 중지합니다.

예약된 작업이 있습니다.

* * * * * /usr/local/bin/script 2>/tmp/cron.log

게다가 script:

#!/bin/bash
if <some validation>; then
    systemctl suspend
fi

따라서 cron을 실행하면 다음과 같은 오류가 발생합니다.

Call to Suspend failed: Interactive authentication required.

누구든지 이것에 대한 제안이 있습니까? 어떻게 해야 하나요?

관련 정보