2014-04-02 02:02:12 +04:00
|
|
|
package initialize
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
|
|
|
|
"github.com/coreos/coreos-cloudinit/system"
|
|
|
|
)
|
|
|
|
|
|
|
|
const DefaultIpv4Address = "127.0.0.1"
|
|
|
|
|
2014-05-10 07:33:34 +04:00
|
|
|
type EtcHosts string
|
|
|
|
|
|
|
|
func (eh EtcHosts) generateEtcHosts() (out string, err error) {
|
|
|
|
if eh != "localhost" {
|
2014-04-02 02:02:12 +04:00
|
|
|
return "", errors.New("Invalid option to manage_etc_hosts")
|
|
|
|
}
|
|
|
|
|
|
|
|
// use the operating system hostname
|
|
|
|
hostname, err := os.Hostname()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2014-04-07 22:01:17 +04:00
|
|
|
return fmt.Sprintf("%s %s\n", DefaultIpv4Address, hostname), nil
|
2014-04-02 02:02:12 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-10 07:33:34 +04:00
|
|
|
func (eh EtcHosts) File(root string) (*system.File, error) {
|
|
|
|
if eh == "" {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2014-04-02 02:02:12 +04:00
|
|
|
|
2014-05-10 07:33:34 +04:00
|
|
|
etcHosts, err := eh.generateEtcHosts()
|
2014-04-02 02:02:12 +04:00
|
|
|
if err != nil {
|
2014-05-10 07:33:34 +04:00
|
|
|
return nil, err
|
2014-04-02 02:02:12 +04:00
|
|
|
}
|
|
|
|
|
2014-05-10 07:33:34 +04:00
|
|
|
return &system.File{
|
|
|
|
Path: path.Join("etc", "hosts"),
|
2014-04-02 02:02:12 +04:00
|
|
|
RawFilePermissions: "0644",
|
|
|
|
Content: etcHosts,
|
2014-05-10 07:33:34 +04:00
|
|
|
}, nil
|
2014-04-02 02:02:12 +04:00
|
|
|
}
|