mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-20 07:42:49 +00:00
30 lines
669 B
Bash
30 lines
669 B
Bash
# Default stub functions for infrastructure libraries.
|
|
# When loading an infrastructure library, these functions will be overridden.
|
|
|
|
infra_list() {
|
|
warning "infra_list is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_quotas() {
|
|
warning "infra_quotas is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_start() {
|
|
warning "infra_start is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_stop() {
|
|
warning "infra_stop is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_quotas() {
|
|
warning "infra_quotas is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_opensg() {
|
|
warning "infra_opensg is unsupported on $INFRACLASS."
|
|
}
|
|
|
|
infra_disableaddrchecks() {
|
|
warning "infra_disableaddrchecks is unsupported on $INFRACLASS."
|
|
} |