- add /etc/vcached.conf
[util-vserver.git] / sysv / Makefile-files
1 ## $Id: Makefile-files,v 1.1.4.2 2003/10/30 15:16:30 ensc Exp $  -*- makefile -*-
2
3 ## Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 ##  
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
8 ## any later version.
9 ##  
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
14 ##  
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 ##  
19
20 sysv_XTRAS              =  sysv/rebootmgr.subst \
21                            sysv/v_gated.subst \
22                            sysv/v_httpd.subst \
23                            sysv/v_named.subst \
24                            sysv/v_portmap.subst \
25                            sysv/v_sendmail.subst \
26                            sysv/v_smb.subst \
27                            sysv/v_sshd.subst \
28                            sysv/v_xinetd.subst \
29                            sysv/vcached.subst \
30                            sysv/vservers.subst
31
32 sysv_GENSCRPTS          =  sysv/rebootmgr \
33                            sysv/v_gated \
34                            sysv/v_httpd \
35                            sysv/v_named \
36                            sysv/v_portmap \
37                            sysv/v_sendmail \
38                            sysv/v_smb \
39                            sysv/v_sshd \
40                            sysv/v_xinetd \
41                            sysv/vcached \
42                            sysv/vservers
43
44 sysv_SCRPTS             =  $(sysv_GENSCRPTS)
45
46 sysv_CFG                =  sysv/vservers.conf sysv/vcached.conf
47
48
49 sysv/%:                 sysv/%.subst
50                         @mkdir -p $$(dirname '$@')
51                         sed -e 's!/usr/lib/util-vserver!$(pkglibdir)!g; \
52                                 s!^USR_SBIN=/usr/sbin$$!USR_SBIN=$(sbindir)!g; \
53                                 s!^VROOTDIR=/vservers$$!VROOTDIR=$(vserverdir)!g; \
54                                ' '$<' >'$@.tmp'
55                         if cmp -s '$<' '$@.tmp'; then \
56                                 cp -p '$<' '$@'; \
57                         else \
58                                 mv -f '$@.tmp' '$@'; \
59                         fi
60                         -rm -f '$@.tmp'
61                         @chmod a-w '$@'