Usermanager Section

File changed: mylinux-usermanager-0.99/publicfiles/login.bat

21c21,23
< ren #HOMEDRIVE#\registry.reg #HOMEDRIVE#\registry-old.reg
---
> #HOMEDRIVE#
> cd \
> ren registry.reg registry-old.reg
29c31,33
< ren #HOMEDRIVE#\registry-update.reg #HOMEDRIVE#\registry-update-old.reg
---
> #HOMEDRIVE#
> cd \
> ren registry-update.reg registry-update-old.reg

File changed: mylinux-usermanager-0.99/publicfiles/logrotate

40,51c40,60
< find httpd/ -name access_log -size $MAXSIZE \
<   -exec /etc/rc.d/init.d/apache stop \; \
<   -exec cp {} {}-$DATESTR \; \
<   -exec cp /dev/null {} \; \
<   -exec /etc/rc.d/init.d/apache start \; \
<   -exec gzip {}-$DATESTR \;
< find httpd/ -name error_log -size $MAXSIZE \
<   -exec /etc/rc.d/init.d/apache stop \; \
<   -exec cp {} {}-$DATESTR \; \
<   -exec cp /dev/null {} \; \
<   -exec /etc/rc.d/init.d/apache start \; \
<   -exec gzip {}-$DATESTR \;
---
> for i in access_log error_log
> do
>   find httpd/ -name $i -size $MAXSIZE \
>     -exec /etc/rc.d/init.d/apache stop \; \
>     -exec cp {} {}-$DATESTR \; \
>     -exec cp /dev/null {} \; \
>     -exec /etc/rc.d/init.d/apache start \; \
>     -exec gzip {}-$DATESTR \;
> done
> 
> # Squid needs a restart after cutting log files.
> # cp /dev/null <logfile> keeps permissions.
> for i in access.log cache.log store.log
> do
>   find squid/ -name $i -size $MAXSIZE \
>     -exec /etc/rc.d/init.d/squid stop \; \
>     -exec cp {} {}-$DATESTR \; \
>     -exec cp /dev/null {} \; \
>     -exec /etc/rc.d/init.d/squid start \; \
>     -exec gzip {}-$DATESTR \;
> done

File changed: mylinux-usermanager-0.99/setup/samba-runonce.sh

3,5c3,5
< # File:           setup/samba.sh                                       #
< # myLinux Server: Copyright (c) 2003 Michael Oberg                     #
< # Version:        0.96                                                 #
---
> # File:           setup/samba-runonce.sh                               #
> # myLinux Server: Copyright (c) 2004 Michael Oberg                     #
> # Version:        0.98                                                 #

File changed: mylinux-usermanager-0.99/setup/secnfs.sh

32c32
< # / 192.168.0.2(no_root_squash,rw) 192.168.0.1(rw)
---
> # / 192.168.0.2(no_root_squash,rw,sync) 192.168.0.1(rw,sync)
34c34
< / $FQHOSTNAME(rw)
---
> / $FQHOSTNAME(rw,sync)
37c37
<   | sed "s@.*/mnt/\([^ \t]*\).*@/mnt/\1 $FQHOSTNAME(rw)@" \
---
>   | sed "s@.*/mnt/\([^ \t]*\).*@/mnt/\1 $FQHOSTNAME(rw,sync)@" \