The solution was that the starting base was too old. After I upgrading to 1.9.4 then to 1.9.5 then to 2.0.0, and finally to 2.0.1, the issue was resolved.
Thanks for trying to help!
On AddNewCron function is missing the operating system test on CronPath:
def addNewCron(externalApp, finalCron):
try:
CronPath = '/var/spool/cron/%s' % (externalApp)
with open(CronPath, "a") as file:
…
If I modify the cronPath on the cronUtil.py, the listing is works fine.
def getWebsiteCron(externalApp):
try:
if ProcessUtilities.decideDistro() == ProcessUtilities.centos:
cronPath = "/var/spool/cron/"…