это небольшое дополнение к предыдущему скрипту, и на этот раз я хотел бы записать детали для резервного копирования.
script /tmp/commit-push-log
# add all files to the repository
for REPOSITORY in $@
do
cd $REPOSITORY
# commit the changes
hg commit -A -m "Commit changes `date`"
# push the changes to the remote repository
if hg push
then
logger hg push completed without failure
else
logger hg push fails
fi
done
exit
cat /tmp/commit-push-log | logger
rm /tmp/commit-push-log
проблема в том, что я не вижу никаких ртутных сообщений в журнале. Что может пойти не так в моем сценарии?