Remove systemd manifest (for real)

I forgot to actually remove the old copy we were moving last time!
This commit is contained in:
Justin Santa Barbara 2017-01-18 01:09:31 -05:00
parent f7d5ec24a2
commit 670b3712ef
1 changed files with 0 additions and 90 deletions

View File

@ -1,90 +0,0 @@
/*
Copyright 2016 The Kubernetes Authors.
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.
*/
package model
import "bytes"
type ServiceManifest struct {
Sections []*ServiceManifestSection
}
type ServiceManifestSection struct {
Key string
Entries []*ServiceManifestEntry
}
type ServiceManifestEntry struct {
Key string
Value string
}
func (s *ServiceManifest) Set(sectionKey string, key string, value string) {
section := s.getOrCreateSection(sectionKey)
section.Set(key, value)
}
func (s *ServiceManifest) getOrCreateSection(key string) *ServiceManifestSection {
for _, section := range s.Sections {
if section.Key == key {
return section
}
}
section := &ServiceManifestSection{
Key: key,
}
s.Sections = append(s.Sections, section)
return section
}
func (s *ServiceManifest) Render() string {
var b bytes.Buffer
for i, section := range s.Sections {
if i != 0 {
b.WriteString("\n")
}
b.WriteString(section.Render())
}
return b.String()
}
func (s *ServiceManifestSection) Set(key string, value string) {
for _, entry := range s.Entries {
if entry.Key == key {
entry.Value = value
return
}
}
entry := &ServiceManifestEntry{
Key: key,
Value: value,
}
s.Entries = append(s.Entries, entry)
}
func (s *ServiceManifestSection) Render() string {
var b bytes.Buffer
b.WriteString("[" + s.Key + "]\n")
for _, entry := range s.Entries {
b.WriteString(entry.Key + "=" + entry.Value + "\n")
}
return b.String()
}