-
Notifications
You must be signed in to change notification settings - Fork 312
/
systemd.go
93 lines (78 loc) · 2.71 KB
/
systemd.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// Copyright 2020 PingCAP, 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,
// See the License for the specific language governing permissions and
// limitations under the License.
package module
import (
"fmt"
"strings"
"time"
"github.com/pingcap/tiup/pkg/cluster/executor"
)
// scope can be either "system", "user" or "global"
const (
SystemdScopeSystem = "system"
SystemdScopeUser = "user"
SystemdScopeGlobal = "global"
)
// SystemdModuleConfig is the configurations used to initialize a SystemdModule
type SystemdModuleConfig struct {
Unit string // the name of systemd unit(s)
Action string // the action to perform with the unit
ReloadDaemon bool // run daemon-reload before other actions
Scope string // user, system or global
Force bool // add the `--force` arg to systemctl command
Timeout time.Duration // timeout to execute the command
}
// SystemdModule is the module used to control systemd units
type SystemdModule struct {
cmd string // the built command
sudo bool // does the command need to be run as root
timeout time.Duration // timeout to execute the command
}
// NewSystemdModule builds and returns a SystemdModule object base on
// given config.
func NewSystemdModule(config SystemdModuleConfig) *SystemdModule {
systemctl := "systemctl"
sudo := true
if config.Force {
systemctl = fmt.Sprintf("%s --force", systemctl)
}
switch config.Scope {
case SystemdScopeUser:
sudo = false // `--user` scope does not need root privilege
fallthrough
case SystemdScopeGlobal:
systemctl = fmt.Sprintf("%s --%s", systemctl, config.Scope)
}
cmd := fmt.Sprintf("%s %s %s",
systemctl, strings.ToLower(config.Action), config.Unit)
if config.ReloadDaemon {
cmd = fmt.Sprintf("%s daemon-reload && %s",
systemctl, cmd)
}
mod := &SystemdModule{
cmd: cmd,
sudo: sudo,
timeout: config.Timeout,
}
// the default TimeoutStopSec of systemd is 90s, after which it sends a SIGKILL
// to remaining processes, set the default value slightly larger than it
if config.Timeout == 0 {
mod.timeout = time.Second * 100
}
return mod
}
// Execute passes the command to executor and returns its results, the executor
// should be already initialized.
func (mod *SystemdModule) Execute(exec executor.Executor) ([]byte, []byte, error) {
return exec.Execute(mod.cmd, mod.sudo, mod.timeout)
}