2014-10-18 02:36:22 +04:00
|
|
|
/*
|
|
|
|
Copyright 2014 CoreOS, Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2014-04-22 00:31:23 +04:00
|
|
|
package initialize
|
|
|
|
|
|
|
|
import (
|
2014-09-27 22:11:57 +04:00
|
|
|
"errors"
|
2014-04-22 00:31:23 +04:00
|
|
|
"log"
|
|
|
|
|
2014-09-22 03:46:58 +04:00
|
|
|
"github.com/coreos/coreos-cloudinit/config"
|
2014-04-22 00:31:23 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
func ParseUserData(contents string) (interface{}, error) {
|
2014-06-28 10:58:27 +04:00
|
|
|
if len(contents) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2014-04-22 00:31:23 +04:00
|
|
|
|
2014-09-27 22:11:57 +04:00
|
|
|
switch {
|
|
|
|
case config.IsScript(contents):
|
2014-04-22 00:31:23 +04:00
|
|
|
log.Printf("Parsing user-data as script")
|
2014-09-27 22:11:57 +04:00
|
|
|
return config.NewScript(contents)
|
|
|
|
case config.IsCloudConfig(contents):
|
2014-04-22 00:31:23 +04:00
|
|
|
log.Printf("Parsing user-data as cloud-config")
|
2014-09-22 03:46:58 +04:00
|
|
|
return config.NewCloudConfig(contents)
|
2014-09-27 22:11:57 +04:00
|
|
|
default:
|
|
|
|
return nil, errors.New("Unrecognized user-data format")
|
2014-04-22 00:31:23 +04:00
|
|
|
}
|
|
|
|
}
|