File tree Expand file tree Collapse file tree 3 files changed +44
-1
lines changed
Expand file tree Collapse file tree 3 files changed +44
-1
lines changed Original file line number Diff line number Diff line change 44app.ini
55config.toml
66docs
7- oda *
87.vscode
Original file line number Diff line number Diff line change 1+ <plist version =" 1.0" >
2+ <dict >
3+ <key >Label </key >
4+ <string >devzero.io.oda </string >
5+ <key >ProgramArguments </key >
6+ <array >
7+ <string >{{.BinaryPath}} </string >
8+ {{- range .CollectCommandSplit }}
9+ <string >{{.}} </string >
10+ {{- end }}
11+ </array >
12+ <key >RunAtLoad </key >
13+ <true />
14+ <key >KeepAlive </key >
15+ <true />
16+ <key >UserName </key >
17+ <string >{{.Username}} </string >
18+ <key >EnvironmentVariables </key >
19+ <dict >
20+ <key >HOME </key >
21+ <string >{{.Home}} </string >
22+ </dict >
23+ <key >StandardOutPath </key >
24+ <string >/tmp/devzero.io.oda.out.log </string >
25+ <key >StandardErrorPath </key >
26+ <string >/tmp/devzero.io.oda.err.log </string >
27+ </dict >
28+ </plist >
Original file line number Diff line number Diff line change 1+ [Unit]
2+ Description =Devzero.io ODA Service
3+ After =network.target
4+
5+ [Service]
6+ Environment ="HOME={{.Home}}"
7+ User ={{.Username}}
8+ Group ={{.Group}}
9+ Type =simple
10+ ExecStart ={{.BinaryPath}} {{.CollectCommand}}
11+ Restart =always
12+ StandardOutput =file:/tmp/devzero.io.oda.out.log
13+ StandardError =file:/tmp/devzero.io.oda.err.log
14+
15+ [Install]
16+ WantedBy =default.target
You can’t perform that action at this time.
0 commit comments