Magellan Linux

Annotation of /tags/pam-config-1_7/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1947 - (hide annotations) (download)
Wed Oct 10 09:02:17 2012 UTC (11 years, 7 months ago) by niro
Original Path: trunk/pam-config/Makefile
File size: 826 byte(s)
-added nproc.conf to prevent fork bombs by user processes
1 niro 1894 # $Id$
2    
3     sysconfdir = /etc
4     securitydir = $(sysconfdir)/security
5     pamdir = $(sysconfdir)/pam.d
6 niro 1908 tmpfilesdir = $(sysconfdir)/tmpfiles.d
7 niro 1894
8     PAM_FILES = system-auth system-login system-local-login system-remote-login \
9     system-services other halt reboot poweroff
10 niro 1900 all:
11     test:
12     clean:
13 niro 1894
14     install:
15 niro 1900 install -d $(DESTDIR)/${sysconfdir}
16     install -d $(DESTDIR)/${securitydir}
17 niro 1947 install -d $(DESTDIR)/${securitydir}/limits.d
18 niro 1900 install -d $(DESTDIR)/${pamdir}
19 niro 1908 install -d $(DESTDIR)/${tmpfilesdir}
20 niro 1900 install -m 0644 environment $(DESTDIR)/${sysconfdir}/
21     install -m 0644 securetty $(DESTDIR)/${sysconfdir}/
22     install -m 0644 console.handlers $(DESTDIR)/${securitydir}/
23 niro 1947 install -m 0644 nproc.conf $(DESTDIR)/${securitydir}/limits.d/
24 niro 1908 install -m 0644 pam.tmpfiles.d $(DESTDIR)/${tmpfilesdir}/pam.conf
25 niro 1900 install -m 0644 ${PAM_FILES} $(DESTDIR)/${pamdir}