minus-squaretuxiqae@lemmy.dbzer0.comtoSelfhosted@lemmy.world•Postgres backup script not working when executed by a cronjoblinkfedilinkEnglisharrow-up4·edit-29 days agoAdd set -x and dump the output (both stdout, stderr) into a logfile Usually issues with crontab are related to variables ( PATH) as well, so you might want to consider verifying that. linkfedilink
minus-squaretuxiqae@lemmy.dbzer0.comtoSteam Deck@sopuli.xyz•Marvel Rivals Dev Apologizes for Mistakenly Banning Steam Deck/Mac players, will unban accountslinkfedilinkEnglisharrow-up11arrow-down1·16 days agoCare to explain what’s wrong with it? linkfedilink
Add
set -x
and dump the output (bothstdout
,stderr
) into a logfileUsually issues with crontab are related to variables ( PATH) as well, so you might want to consider verifying that.