-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
|
||
SYSTEMDSYSTEMDIR=/etc/systemd/system/ | ||
SYSTEMDSYSTEMDIR=/etc/systemd/system | ||
SBINDIR=/usr/sbin | ||
|
||
DESTDIR= | ||
|
||
all: | ||
|
||
install: | ||
install -m 0644 mxstartup-mxvip.service ${SYSTEMDSYSTEMDIR} | ||
install -m 0644 mxstartup-classic.service ${SYSTEMDSYSTEMDIR} | ||
install -m 0644 mxstartup-systemd.service ${SYSTEMDSYSTEMDIR} | ||
install -m 0755 mxstartup2mxconfig ${SBINDIR} | ||
install -m 0755 mxvipctl ${SBINDIR} | ||
install -m 0755 mxservicectl ${SBINDIR} | ||
install -m 0755 mxstartupctl ${SBINDIR} | ||
install -m 0755 mxstartup.systemd ${SBINDIR} | ||
mkdir -p -m 0755 ${DESTDIR}${SYSTEMDSYSTEMDIR} | ||
install -m 0644 mxstartup-mxvip.service ${DESTDIR}${SYSTEMDSYSTEMDIR} | ||
install -m 0644 mxstartup-classic.service ${DESTDIR}${SYSTEMDSYSTEMDIR} | ||
install -m 0644 mxstartup-systemd.service ${DESTDIR}${SYSTEMDSYSTEMDIR} | ||
mkdir -p -m 0755 ${DESTDIR}${SBINDIR} | ||
install -m 0755 mxstartup2mxconfig ${DESTDIR}${SBINDIR} | ||
install -m 0755 mxvipctl ${DESTDIR}${SBINDIR} | ||
install -m 0755 mxservicectl ${DESTDIR}${SBINDIR} | ||
install -m 0755 mxstartupctl ${DESTDIR}${SBINDIR} | ||
install -m 0755 mxstartup.systemd ${DESTDIR}${SBINDIR} |