Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this user
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux
/
mxstartup
Public
forked from
mariux64/mxstartup
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
mxstartup-2.3
Makefile
mxservicectl
mxstartup-classic.service
mxstartup-mxvip.service
mxstartup-systemd.service
mxstartup.systemd
mxstartup2mxconfig
mxstartupctl
mxvipctl
Breadcrumbs
mxstartup
/
mxstartupctl
Copy path
Blame
Blame
Latest commit
History
History
executable file
·
23 lines (20 loc) · 407 Bytes
Breadcrumbs
mxstartup
/
mxstartupctl
Top
File metadata and controls
Code
Blame
executable file
·
23 lines (20 loc) · 407 Bytes
Raw
#!/bin/bash case "${1}" in start) mxvipctl start $2 mxservicectl start $2 ;; stop) mxservicectl stop $2 mxvipctl stop $2 ;; restart) mxservicectl stop $2 mxvipctl stop $2 mxvipctl start $2 mxservicectl start $2 ;; *) echo >&2 "$0 start|stop|restart <service>" ;; esac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
You can’t perform that action at this time.