blob: 4e1a0d7c276b58bb7c0b53f02e2b49efab4c7cfc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
--- Makefile.orig Thu Mar 25 23:06:01 1999
+++ Makefile Sat Jul 3 22:03:13 2004
@@ -4,7 +4,8 @@
#
# $Id: Makefile,v 1.4 1999/03/22 05:32:24 crowland Exp crowland $
-INSTALLDIR = /usr/local/abacus/hostsentry
+INSTALLDIR = /usr/local/lib/hostsentry
+CONFIGDIR = /usr/local/etc/hostsentry
all:
@@ -20,8 +21,13 @@
@echo "Installing HostSentry in: $(INSTALLDIR)"
install -d -g 0 -o root -m 0700 $(INSTALLDIR)
install -d -g 0 -o root -m 0700 $(INSTALLDIR)/modules
- install -g 0 -o root -m 0700 host* $(INSTALLDIR)
+ install -g 0 -o root -m 0700 host*.py $(INSTALLDIR)
install -g 0 -o root -m 0700 module* $(INSTALLDIR)/modules
+ install -d -g 0 -o root -m 0700 $(CONFIGDIR)
+ install -g 0 -o root -m 0600 hostsentry.action $(CONFIGDIR)/hostsentry.action-dist
+ install -g 0 -o root -m 0600 hostsentry.conf $(CONFIGDIR)/hostsentry.conf-dist
+ install -g 0 -o root -m 0600 hostsentry.ignore $(CONFIGDIR)/hostsentry.ignore-dist
+ install -g 0 -o root -m 0600 hostsentry.modules $(CONFIGDIR)/hostsentry.modules-dist
@echo ""
@echo ""
|