Skip to content
Permalink
84fbb1446a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (12 sloc) 364 Bytes
PREFIX=/usr
BINDIR=${PREFIX}/bin
SBINDIR=${PREFIX}/sbin
DESTDIR=
all:
install: clusterd clusterd.service
install -d ${DESTDIR}${SBINDIR}
install -m 755 clusterd ${DESTDIR}${SBINDIR}/clusterd
install -d ${DESTDIR}/etc/systemd/system/
install -m 644 clusterd.service ${DESTDIR}/etc/systemd/system/clusterd.service
restart:
systemctl restart clusterd.service