From 44e8a2f0596a5942bc40661c4da9ace18bbda2e5 Mon Sep 17 00:00:00 2001 From: Jillian Vogel Date: Wed, 17 Jan 2024 13:46:20 +1030 Subject: [PATCH] refactor: moves the LMS init script under its own dir so that the jobs/init dir structure is consistent. --- tutoraspects/plugin.py | 2 +- tutoraspects/templates/aspects/jobs/init/{ => lms}/init-lms.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tutoraspects/templates/aspects/jobs/init/{ => lms}/init-lms.sh (100%) diff --git a/tutoraspects/plugin.py b/tutoraspects/plugin.py index c79ced717..0b7b5ee73 100644 --- a/tutoraspects/plugin.py +++ b/tutoraspects/plugin.py @@ -513,7 +513,7 @@ ("aspects", ("aspects", "jobs", "init", "aspects", "init-aspects.sh"), 94), ("superset", ("aspects", "jobs", "init", "superset", "init-superset.sh"), 95), ("mysql", ("aspects", "jobs", "init", "mysql", "init-mysql-post-migration.sh"), 96), - ("lms", ("aspects", "jobs", "init", "init-lms.sh"), 97), + ("lms", ("aspects", "jobs", "init", "lms", "init-lms.sh"), 97), ] # For each task added to MY_INIT_TASKS, we load the task template diff --git a/tutoraspects/templates/aspects/jobs/init/init-lms.sh b/tutoraspects/templates/aspects/jobs/init/lms/init-lms.sh similarity index 100% rename from tutoraspects/templates/aspects/jobs/init/init-lms.sh rename to tutoraspects/templates/aspects/jobs/init/lms/init-lms.sh