diff --git a/imageroot/actions/clone-module/50configure-module b/imageroot/actions/clone-module/50configure-module index 0d5274a..9e51004 100755 --- a/imageroot/actions/clone-module/50configure-module +++ b/imageroot/actions/clone-module/50configure-module @@ -13,7 +13,6 @@ configure_retval = agent.tasks.run(agent_id=os.environ['AGENT_ID'], action='conf "lets_encrypt": os.environ["TRAEFIK_LETS_ENCRYPT"] == 'True', "host": os.environ["TRAEFIK_HOST"], "http2https": os.environ["TRAEFIK_HTTP2HTTPS"] == 'True', - "restore": True, "retention_days": int(os.environ["RETENTION_DAYS"]), }) agent.assert_exp(configure_retval['exit_code'] == 0, "The configure-module subtask failed!") diff --git a/imageroot/actions/restore-module/50configure-module b/imageroot/actions/restore-module/50configure-module index 24a86cf..80609b6 100755 --- a/imageroot/actions/restore-module/50configure-module +++ b/imageroot/actions/restore-module/50configure-module @@ -18,7 +18,6 @@ configure_retval = agent.tasks.run(agent_id=os.environ['AGENT_ID'], action='conf "lets_encrypt": renv["TRAEFIK_LETS_ENCRYPT"] == 'True', "host": renv["TRAEFIK_HOST"], "http2https": renv["TRAEFIK_HTTP2HTTPS"] == 'True', - "restore": True, 'retention_days': int(renv['RETENTION_DAYS']), }) agent.assert_exp(configure_retval['exit_code'] == 0, "The configure-module subtask failed!")