6
0
Fork 0
This repository has been archived on 2022-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
cdist-recycledcloud/type/__recycledcloud_mysql/manifest

14 lines
313 B
Bash

#!/bin/sh
os=$(cat "${__global:?}/explorer/os")
if [ "$os" != "alpine" ]; then
echo "This type is expected to run on Alpine Linux, not $os. Exiting." >&2
exit 1
fi
__package mariadb
__package mariadb-client
require="__package/mariadb" __start_on_boot mariadb
# See gencode-remote for service initialization.