mirror of
https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git
synced 2025-12-14 19:02:45 +03:00
11 lines
269 B
Bash
11 lines
269 B
Bash
# Unknown UserData Functions
|
|
# vim:set filetype=sh:
|
|
# shellcheck shell=sh
|
|
|
|
init__unknown_userdata() {
|
|
local type="$(userdata_type)"
|
|
log -i -t "$phase" warning "$ACTION: unable to process '$type' user-data"
|
|
}
|
|
|
|
INIT_ACTIONS_MAIN="unknown_userdata ${INIT_ACTIONS_MAIN}"
|