- Timestamp:
- Apr 10, 2017, 4:34:07 AM (8 years ago)
- Location:
- trunk/server
- Files:
-
- 1 added
- 3 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/common/oursrc/execsys/Makefile.in
r1358 r2836 6 6 sysconfdir = @sysconfdir@ 7 7 sbindir = @sbindir@ 8 APACHEDIR = /etc/httpd9 SYSCATPATH = /usr/local/bin10 8 trusteddir = /usr/libexec/scripts-trusted 11 9 12 all-local: static-cat10 all-local: 13 11 14 static-cat.c: static-cat.c.pre 15 syscat_path=$(SYSCATPATH)/static-cat perl upd-execsys 16 17 install: all-local 18 install -D -p -m644 execsys.conf $(DESTDIR)$(APACHEDIR)/conf.d/execsys.conf 12 install: 19 13 install -D -p -m755 execsys-binfmt $(DESTDIR)/etc/init.d/execsys-binfmt 20 install -D -p -m755 static-cat $(DESTDIR)$(SYSCATPATH)/static-cat21 14 install -D -p -m755 ldapize.pl $(DESTDIR)$(sbindir)/ldapize.pl 22 15 -
trunk/server/common/oursrc/execsys/configure.in
r1337 r2836 1 AC_INIT( static-cat.c.pre)1 AC_INIT([Makefile.in]) 2 2 3 3 AC_PROG_CC -
trunk/server/common/oursrc/execsys/mrproper
r1337 r2836 1 1 #!/bin/sh 2 2 3 rm -f static-cat4 3 rm -f configure config.* Makefile 5 rm -f static-cat.c execsys.conf6 4 rm -rf auto*.cache -
trunk/server/doc/adding-static-exts
r2831 r2836 1 1 1. Update server/common/patches/httpd-suexec-scripts.patch, 2 server/ common/oursrc/execsys/upd-execsys, and2 server/fedora/conf/etc/httpd/conf.d/execsys.conf, and 3 3 server/common/oursrc/scripts-static-cat/StaticCat.hs. 4 4 2. Following the directions in the package-build-howto document, build 5 new httpd , execsys,and scripts-static-cat packages, upload them to5 new httpd and scripts-static-cat packages, upload them to 6 6 the repo, and deploy them to the servers. -
trunk/server/fedora/specs/execsys.spec
r926 r2836 26 26 %build 27 27 ./configure --prefix=/usr/local --with-pl=/usr/bin/perl --with-php=/usr/bin/php-cgi --with-py=/usr/bin/python --with-exe=/usr/bin/mono 28 make SYSCATDIR=/usr/local/sbin28 make 29 29 30 30 %install 31 31 [ $RPM_BUILD_ROOT != / ] && rm -rf $RPM_BUILD_ROOT 32 make install DESTDIR=$RPM_BUILD_ROOT SYSCATDIR=/usr/local/sbin32 make install DESTDIR=$RPM_BUILD_ROOT 33 33 34 34 %clean … … 36 36 37 37 %files 38 %defattr(0644, root, root)39 /etc/httpd/conf.d/execsys.conf40 38 %defattr(0755, root, root) 41 /usr/local/bin/static-cat42 39 /etc/init.d/execsys-binfmt 43 40 /usr/local/sbin/ldapize.pl
Note: See TracChangeset
for help on using the changeset viewer.