2014-04-22 00:31:23 +04:00
|
|
|
package initialize
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/coreos/coreos-cloudinit/system"
|
|
|
|
)
|
|
|
|
|
|
|
|
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
|
|
|
header := strings.SplitN(contents, "\n", 2)[0]
|
|
|
|
|
|
|
|
// Explicitly trim the header so we can handle user-data from
|
|
|
|
// non-unix operating systems. The rest of the file is parsed
|
|
|
|
// by goyaml, which correctly handles CRLF.
|
|
|
|
header = strings.TrimSpace(header)
|
|
|
|
|
|
|
|
if strings.HasPrefix(header, "#!") {
|
|
|
|
log.Printf("Parsing user-data as script")
|
|
|
|
return system.Script(contents), nil
|
|
|
|
} else if header == "#cloud-config" {
|
|
|
|
log.Printf("Parsing user-data as cloud-config")
|
2014-06-27 04:17:58 +04:00
|
|
|
return NewCloudConfig(contents)
|
2014-04-22 00:31:23 +04:00
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("Unrecognized user-data header: %s", header)
|
|
|
|
}
|
|
|
|
}
|