2014-09-22 06:37:39 +04:00
|
|
|
package system
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/coreos/coreos-cloudinit/config"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Etcd is a top-level structure which embeds its underlying configuration,
|
|
|
|
// config.Etcd, and provides the system-specific Unit().
|
|
|
|
type Etcd struct {
|
|
|
|
config.Etcd
|
|
|
|
}
|
|
|
|
|
|
|
|
// Units creates a Unit file drop-in for etcd, using any configured options.
|
2014-10-07 02:14:29 +04:00
|
|
|
func (ee Etcd) Units() []Unit {
|
2014-09-22 06:37:39 +04:00
|
|
|
content := dropinContents(ee.Etcd)
|
|
|
|
if content == "" {
|
2014-10-07 02:14:29 +04:00
|
|
|
return nil
|
2014-09-22 06:37:39 +04:00
|
|
|
}
|
2014-09-22 06:22:38 +04:00
|
|
|
return []Unit{{config.Unit{
|
2014-09-22 06:37:39 +04:00
|
|
|
Name: "etcd.service",
|
|
|
|
Runtime: true,
|
|
|
|
DropIn: true,
|
|
|
|
Content: content,
|
2014-10-07 02:14:29 +04:00
|
|
|
}}}
|
2014-09-22 06:37:39 +04:00
|
|
|
}
|