Files
Vic Kerr 45f5888c41 Initial open source release
Co-authored-by: Felix Wischke <felix.wischke@ionos.com>
Co-authored-by: Jonas Bender <90411737+jonas-be@users.noreply.github.com>
Co-authored-by: Ludwig Bedacht <132355999+lubedacht@users.noreply.github.com>
Co-authored-by: Mario Valderrama <15158349+avorima@users.noreply.github.com>
Co-authored-by: Mohamed Chiheb Ben jemaa <mohamed-chiheb.ben-jemaa@ionos.com>
Co-authored-by: Vic Kerr <318870+wikkyk@users.noreply.github.com>
2023-11-29 14:17:03 +00:00

46 lines
1.7 KiB
Go

/*
Copyright 2023 IONOS Cloud.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cloudinit
import "github.com/pkg/errors"
var (
// ErrMissingHostname returns an error if required hostname is empty.
ErrMissingHostname = errors.New("hostname is not set")
// ErrMissingInstanceID returns an error if required hostname is empty.
ErrMissingInstanceID = errors.New("instance-id is not set")
// ErrMissingIPAddress returns an error if required ip address is empty.
ErrMissingIPAddress = errors.New("ip address is not set")
// ErrMalformedIPAddress returns an error if ip address is malformed.
ErrMalformedIPAddress = errors.New("malformed ip address")
// ErrMissingGateway returns an error if required gateway is empty.
ErrMissingGateway = errors.New("gateway is not set")
// ErrMissingMacAddress returns an error if required mac address is empty.
ErrMissingMacAddress = errors.New("mac address is not set")
// ErrMissingNetworkConfigData returns an error if required network config data is empty.
ErrMissingNetworkConfigData = errors.New("network config data is not set")
// ErrMissingIPAddresses returns an error if required ip addresses is empty.
ErrMissingIPAddresses = errors.New("ip addresses is not set")
)