2014-09-22 06:22:13 +04:00
|
|
|
package system
|
2014-04-02 02:02:12 +04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
|
2014-09-22 06:22:13 +04:00
|
|
|
"github.com/coreos/coreos-cloudinit/config"
|
2014-04-02 02:02:12 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
const DefaultIpv4Address = "127.0.0.1"
|
|
|
|
|
2014-09-22 06:22:13 +04:00
|
|
|
type EtcHosts struct {
|
|
|
|
Config config.EtcHosts
|
|
|
|
}
|
2014-05-10 07:33:34 +04:00
|
|
|
|
|
|
|
func (eh EtcHosts) generateEtcHosts() (out string, err error) {
|
2014-09-22 06:22:13 +04:00
|
|
|
if eh.Config != "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-09-22 06:22:13 +04:00
|
|
|
func (eh EtcHosts) File() (*File, error) {
|
|
|
|
if eh.Config == "" {
|
2014-05-10 07:33:34 +04:00
|
|
|
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-09-22 06:22:27 +04:00
|
|
|
return &File{config.File{
|
2014-05-10 07:33:34 +04:00
|
|
|
Path: path.Join("etc", "hosts"),
|
2014-04-02 02:02:12 +04:00
|
|
|
RawFilePermissions: "0644",
|
|
|
|
Content: etcHosts,
|
2014-09-22 06:22:27 +04:00
|
|
|
}}, nil
|
2014-04-02 02:02:12 +04:00
|
|
|
}
|