2015-01-25 06:32:33 +03:00
|
|
|
// Copyright 2015 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-10-18 02:36:22 +04:00
|
|
|
|
2014-09-22 06:22:13 +04:00
|
|
|
package system
|
2014-04-02 02:02:12 +04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
|
2015-11-09 11:24:52 +03: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 {
|
2014-10-23 22:44:15 +04:00
|
|
|
config.EtcHosts
|
2014-09-22 06:22:13 +04:00
|
|
|
}
|
2014-05-10 07:33:34 +04:00
|
|
|
|
|
|
|
func (eh EtcHosts) generateEtcHosts() (out string, err error) {
|
2014-10-23 22:44:15 +04:00
|
|
|
if eh.EtcHosts != "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) {
|
2014-10-23 22:44:15 +04:00
|
|
|
if eh.EtcHosts == "" {
|
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
|
|
|
}
|