From 55c05642d2a49d55c6409beeb948130a305df5b7 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Thu, 30 Jan 2020 10:16:01 +0100 Subject: lib/intentions-queue started --- lib/common-functions | 22 ---------------------- lib/intentions-queue | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 22 deletions(-) create mode 100755 lib/intentions-queue diff --git a/lib/common-functions b/lib/common-functions index 358b30b..e7e44b9 100755 --- a/lib/common-functions +++ b/lib/common-functions @@ -11,28 +11,6 @@ fi # TODO: remove hard-coded package suffixes -# TODO: Create an intentions-queue: It should handle all mysql and -# master mirror interactions which interact with each other or other -# local actions (repo-add, repo-remove, ...). -# Design idea: Create enumerated shell scripts which do the right thing -# and remove themself after successful execution. -# return-assignment would create the following scripts: -# 1. get lock -# 2. download database from mirror -# 3. update package database -# 4. update mysql database -# 5. upload database and package to mirror -# 6. release lock -# db-update would create the following scripts: -# 1. get lock -# 2. determine, what needs to be done (and create script 3-8 accordingly) -# 3. download database from mirror -# 4. update package database -# 5. update mysql database -# 6. upload database to mirror -# 7. update packages on mirror -# 8. release lock - # find_pkgbuilds package repository git_repository git_revision mod_git_revision # find the PKGBUILD and modification of $package from $repository # sets $PKGBUILD and $PKGBUILD_mod diff --git a/lib/intentions-queue b/lib/intentions-queue new file mode 100755 index 0000000..56742fa --- /dev/null +++ b/lib/intentions-queue @@ -0,0 +1,28 @@ +#!/bin/sh + +# contains functions related to the intentions-queue + +# shellcheck disable=SC2039,SC2119,SC2120 + +if [ -z "${base_dir}" ]; then + # just to make shellcheck happy + . '../lib/load-configuration' +fi + +# TODO: Create an intentions-queue: It should handle all mysql and +# master mirror interactions which interact with each other or other +# local actions (repo-add, repo-remove, ...). +# Design idea: Create enumerated shell scripts which do the right thing +# and remove themself after successful execution. +# return-assignment would create the following scripts: +# 1. download database from mirror +# 2. update package database +# 3. update mysql database +# 4. upload database and package to mirror +# db-update would create the following scripts (after getting the usual +# database lock and determining what needs to be done): +# 1. download database from mirror +# 2. update package database +# 3. update mysql database +# 4. upload database to mirror +# 5. update packages on mirror -- cgit v1.2.3