1 Star 0 Fork 1

mysnapcore / mysnapd

forked from tupelo-shen / mysnapd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
service.go 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
tupelo-shen 提交于 2022-11-08 09:25 . fix: interfaces commit
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016-2017 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package systemd
import (
"bytes"
"fmt"
)
// Service describes a single systemd service file
type Service struct {
Description string
Type string
RemainAfterExit bool
ExecStart string
ExecStop string
}
func (s *Service) String() string {
var buf bytes.Buffer
if s.Description != "" {
buf.WriteString("[Unit]\n")
fmt.Fprintf(&buf, "Description=%s\n\n", s.Description)
}
buf.WriteString("[Service]\n")
if s.Type != "" {
fmt.Fprintf(&buf, "Type=%s\n", s.Type)
}
// "no" is the default in systemd so we don't neet to write it
if s.RemainAfterExit {
buf.WriteString("RemainAfterExit=yes\n")
}
if s.ExecStart != "" {
fmt.Fprintf(&buf, "ExecStart=%s\n", s.ExecStart)
}
if s.ExecStop != "" {
fmt.Fprintf(&buf, "ExecStop=%s\n", s.ExecStop)
}
fmt.Fprintf(&buf, "\n[Install]\nWantedBy=multi-user.target\n")
return buf.String()
}
Go
1
https://gitee.com/mysnapcore/mysnapd.git
git@gitee.com:mysnapcore/mysnapd.git
mysnapcore
mysnapd
mysnapd
v0.1.0

搜索帮助