7 lines
175 B
SYSTEMD
7 lines
175 B
SYSTEMD
|
[Unit]
|
||
|
Description=Remove -exam homes older than 12h
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
ExecStart=find /home/ -maxdepth 1 -mindepth 1 -name '*-exam' -type d -cmin +720 -exec rm -rf {} \;
|