mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-14 10:24:24 -05:00
106b738fab
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
36 lines
725 B
Bash
Executable File
36 lines
725 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) Edgeless Systems GmbH
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
set -euo pipefail
|
|
shopt -s inherit_errexit
|
|
|
|
depends() {
|
|
echo systemd
|
|
}
|
|
|
|
install_and_enable_unit() {
|
|
unit="$1"
|
|
shift
|
|
target="$1"
|
|
shift
|
|
inst_simple "${moddir:?}/${unit}" "${systemdsystemunitdir:?}/${unit}"
|
|
mkdir -p "${initdir:?}${systemdsystemconfdir:?}/${target}.wants"
|
|
ln_r "${systemdsystemunitdir}/${unit}" \
|
|
"${systemdsystemconfdir}/${target}.wants/${unit}"
|
|
}
|
|
|
|
install() {
|
|
inst_multiple \
|
|
bash \
|
|
curl \
|
|
grep \
|
|
sed
|
|
|
|
inst_script "${moddir}/azure-provisioning.sh" \
|
|
"/usr/local/bin/azure-provisioning"
|
|
install_and_enable_unit "azure-provisioning.service" \
|
|
"basic.target"
|
|
}
|