Changes in / [30:20]


Ignore:
Files:
2 added
3 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • /server/common/oursrc/execsys/execsys-binfmt.pre

    r30 r20  
    33# execsys-binfmt: test1
    44#
    5 # chkconfig: 2345 2 98
     5# chkconfig: 2345 2 99
    66# description: test2
    77#
    88
    9 stop ()
    10 {
    11     echo "-1" > /proc/sys/fs/binfmt_misc/status
    12     umount /proc/sys/fs/binfmt_misc
    13 }
     9mount -t binfmt_misc none /proc/sys/fs/binfmt_misc
     10echo "-1" > /proc/sys/fs/binfmt_misc/status
    1411
    15 start ()
    16 {
    17     mount -t binfmt_misc none /proc/sys/fs/binfmt_misc
    1812# START-AUTOGENERATED: DO NOT EDIT THIS SECTION, INCLUDING THIS LINE!
    1913# This section is populated by the script upd-execsys
    2014# END-AUTOGENERATED: DO NOT EDIT THIS SECTION, INCLUDING THIS LINE!
    21 }
    22 
    23 case "$1" in
    24 start)
    25     stop 2>/dev/null || :
    26     start
    27     ;;
    28 stop)
    29     stop
    30     ;;
    31 restart)
    32     stop
    33     start
    34     ;;
    35 *)
    36     echo "Usage: $0 [start|stop|restart]" >&2
    37     exit 2
    38     ;;
    39 esac
    40 
    41 exit $?
  • /server/common/oursrc/execsys/execsys.conf

    r30 r20  
    1010
    1111<Files *.py>
    12         SetHandler cgi-script
    13         Options +ExecCGI
    14 </Files>
    15 
    16 <Files *.cgi>
    1712        SetHandler cgi-script
    1813        Options +ExecCGI
  • /server/common/oursrc/execsys/upd-execsys

    r30 r20  
    2525 php
    2626 py
    27  cgi
    2827 scm
    2928);
  • /server/common/oursrc/lockeradm/admof.in

    r30 r20  
    6767    next if($mems[0] !~ /^Members of $group \(id: \S+\) are:$/);
    6868   
    69     if($mems =~ /\s+\Q$curuser\E\s+/) {
     69    if($mems =~ /\s+$curuser\s+/) {
    7070        success();
    7171    }
  • /server/fedora/specs/execsys.spec

    r30 r20  
    4343/etc/init.d/execsys-binfmt
    4444
    45 %post
    46 chkconfig --add execsys-binfmt
    47 service execsys-binfmt start
    48 
    49 %preun
    50 service execsys-binfmt stop
    51 chkconfig --del execsys-binfmt
    52 
    5345%changelog
    5446
Note: See TracChangeset for help on using the changeset viewer.