- Files:
-
- 2 added
- 3 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
/server/common/oursrc/execsys/execsys-binfmt.pre
r30 r20 3 3 # execsys-binfmt: test1 4 4 # 5 # chkconfig: 2345 2 9 85 # chkconfig: 2345 2 99 6 6 # description: test2 7 7 # 8 8 9 stop () 10 { 11 echo "-1" > /proc/sys/fs/binfmt_misc/status 12 umount /proc/sys/fs/binfmt_misc 13 } 9 mount -t binfmt_misc none /proc/sys/fs/binfmt_misc 10 echo "-1" > /proc/sys/fs/binfmt_misc/status 14 11 15 start ()16 {17 mount -t binfmt_misc none /proc/sys/fs/binfmt_misc18 12 # START-AUTOGENERATED: DO NOT EDIT THIS SECTION, INCLUDING THIS LINE! 19 13 # This section is populated by the script upd-execsys 20 14 # END-AUTOGENERATED: DO NOT EDIT THIS SECTION, INCLUDING THIS LINE! 21 }22 23 case "$1" in24 start)25 stop 2>/dev/null || :26 start27 ;;28 stop)29 stop30 ;;31 restart)32 stop33 start34 ;;35 *)36 echo "Usage: $0 [start|stop|restart]" >&237 exit 238 ;;39 esac40 41 exit $? -
/server/common/oursrc/execsys/execsys.conf
r30 r20 10 10 11 11 <Files *.py> 12 SetHandler cgi-script13 Options +ExecCGI14 </Files>15 16 <Files *.cgi>17 12 SetHandler cgi-script 18 13 Options +ExecCGI -
/server/common/oursrc/execsys/upd-execsys
r30 r20 25 25 php 26 26 py 27 cgi28 27 scm 29 28 ); -
/server/common/oursrc/lockeradm/admof.in
r30 r20 67 67 next if($mems[0] !~ /^Members of $group \(id: \S+\) are:$/); 68 68 69 if($mems =~ /\s+ \Q$curuser\E\s+/) {69 if($mems =~ /\s+$curuser\s+/) { 70 70 success(); 71 71 } -
/server/fedora/specs/execsys.spec
r30 r20 43 43 /etc/init.d/execsys-binfmt 44 44 45 %post46 chkconfig --add execsys-binfmt47 service execsys-binfmt start48 49 %preun50 service execsys-binfmt stop51 chkconfig --del execsys-binfmt52 53 45 %changelog 54 46
Note: See TracChangeset
for help on using the changeset viewer.