Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Latest commit 8a4e08c Apr 17, 2024 History
1 contributor

Users who have contributed to this file

executable file 10 lines (8 sloc) 315 Bytes
#!/bin/bash
CRONFILE=/csp-tap/InCommonTAP-Examples/Workbench/scripts/csp-cron
#build crontab file
echo "#update CSP container status" > ${CRONFILE}
echo "*/3 * * * * /csp-tap/InCommonTAP-Examples/Workbench/scripts/update-health-status.sh" >> ${CRONFILE}
chmod 644 ${CRONFILE}
#install crontab
crontab ${CRONFILE}