summaryrefslogtreecommitdiff
path: root/src/bin/db-init
blob: e63bf5a9de130caf267b5365722c8c9eb9b28c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
# Creates the repo structure defined in config

CONFIG_DIR="$(dirname "$(readlink -e "$0")")/etc"

source "${CONFIG_DIR}"/dbscripts{.d/{db-functions,main},}.cfg

db-init-usage() {
	msg "Usage: %s [platform1 platform2 ... platformX]" "${0##*/}"
	exit 1
}

for 'platform' in "${PLATFORMS[@]}"; do
	if [ -n $1 ]; then
		for '_platform' in "$@"; do
			# Rename plataform name ($_platform) to easily script usage
			_platform_name="${_platform/\//+}" _platform_name="${_platform_name,,}"

			if [ "${_platform_name}" == "${platform}" ]; then
				source "${CONFIG_DIR}/dbscripts.d/${_platform_name}.cfg"

				mkdir -p -- "${REPO_DIR}"/{"${PKG_MAIN_POOLS}","${SRC_MAIN_POOLS}"} "${CLEANUP_DESTDIR}" "${SOURCE_CLEANUP_DESTDIR}" "${STAGING}"
			else
				db-init-usage
			fi
		done
	else
		source "${CONFIG_DIR}/dbscripts.d/${platform}.cfg"

		mkdir -p -- "${REPO_DIR}"/{"${PKG_MAIN_POOLS}","${SRC_MAIN_POOLS}"} "${CLEANUP_DESTDIR}" "${SOURCE_CLEANUP_DESTDIR}" "${STAGING}"
	fi
done

# "$(dirname "$(readlink -e "$0")")/db-repo-add" -p "${_platform}" "${PKG_REPOS[@]}"