예제 #1
0
파일: systemd.go 프로젝트: rtnpro/flamingo
func (sysd *Implementation) Validate(c initd.Component) error {
	if !strings.HasPrefix(c.Path(), sysd.UnitDir) {
		return fmt.Errorf("systemd: unit file should be in %v", sysd.UnitDir)
	}

	return nil
}