When install check for systemd sym links before making them
parent
3f446fbaca
commit
1c2888ab9f
12
Makefile
12
Makefile
|
|
@ -30,9 +30,15 @@ build-win:
|
||||||
install: build
|
install: build
|
||||||
install -D $(PROJROOT)build/bin/rhosts $(BINDIR)/
|
install -D $(PROJROOT)build/bin/rhosts $(BINDIR)/
|
||||||
cp -r $(PROJROOT)build/share/rhosts $(DATADIR)
|
cp -r $(PROJROOT)build/share/rhosts $(DATADIR)
|
||||||
ln -s $(DATADIR)rhosts/systemd/rhosts.service /usr/lib/systemd/system/rhosts.service
|
if [ ! -h /usr/lib/systemd/system/rhosts.service ]; then \
|
||||||
ln -s $(DATADIR)rhosts/systemd/rhosts.path /usr/lib/systemd/system/rhosts.path
|
ln -s $(DATADIR)rhosts/systemd/rhosts.service /usr/lib/systemd/system/rhosts.service \
|
||||||
ln -s $(DATADIR)rhosts/systemd/rhosts.timer /usr/lib/systemd/system/rhosts.timer
|
;fi
|
||||||
|
if [ ! -h /usr/lib/systemd/system/rhosts.path ]; then \
|
||||||
|
ln -s $(DATADIR)rhosts/systemd/rhosts.path /usr/lib/systemd/system/rhosts.path \
|
||||||
|
;fi
|
||||||
|
if [ ! -h /usr/lib/systemd/system/rhosts.timer ]; then \
|
||||||
|
ln -s $(DATADIR)rhosts/systemd/rhosts.timer /usr/lib/systemd/system/rhosts.timer \
|
||||||
|
;fi
|
||||||
uninstall:
|
uninstall:
|
||||||
if [ -f $(BINDIR)/rhosts ]; then \
|
if [ -f $(BINDIR)/rhosts ]; then \
|
||||||
rm $(BINDIR)/rhosts \
|
rm $(BINDIR)/rhosts \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue