Source File section

File created: MyLinux-Packages/proftpd-1.2.10.tar.bz2 (Size: 920337, Created: Sep 4 2004 )

Usermanager Section

File changed: mylinux-usermanager-0.99/MyLinux-Patches/clamav.conf.patch

1,2c1,2
< --- clamd.conf	2005-02-28 20:16:17.000000000 +0100
< +++ clamd.conf	2005-02-28 20:26:01.000000000 +0100
---
> --- ./clamd.conf	2005-02-28 20:16:17.000000000 +0100
> +++ ./clamd.conf	2005-02-28 20:26:01.000000000 +0100

File changed: mylinux-usermanager-0.99/MyLinux-Patches/firewall

4,5c4,5
< # myLinux Server: Copyright (c) 2003 Michael Oberg                     #
< # Version:        0.97                                                 #
---
> # myLinux Server: Copyright (c) 2005 Michael Oberg                     #
> # Version:        0.99                                                 #
150c150
< iptables -A INPUT -p tcp --sport 1024:65535 --dport 21 -i ! $OUTSIDE -j ACCEPT
---
> iptables -A INPUT -p tcp --sport 1024:65535 --dport 20:21 -i ! $OUTSIDE -j ACCEPT

File changed: mylinux-usermanager-0.99/compile-scripts/COMPILE-MYLINUX

1159c1159,1218
< # httpd-2.0.52                                               #
---
> # proftpd                                                    #
> ##############################################################
> cd /MyLinux-Sources/proftpd-1.2.10/
> ./configure --rpefix=/usr --sysconfdir=/etc
> make
> make install
> cat << EOF > /etc/proftpd.conf
> UseReverseDNS off
> IdentLookups off
> EOF
> 
> cat << "EOF" > /etc/rc.d/init.d/proftpd
> #!/bin/sh
> # Begin $rc_base/init.d/proftpd
> 
> # Based on sysklogd script from LFS-3.1 and earlier.
> # Rewritten by Gerard Beekmans  - gerard@linuxfromscratch.org
> 
> source /etc/sysconfig/rc
> source $rc_functions
> 
> case "$1" in
> 
>         start)
>         echo "Starting proftpd..."
>         loadproc /usr/sbin/proftpd
>         ;;
> 
>         stop)
>         echo "Stopping proftpd..."
>         killproc proftpd
>         ;;
>                 
>         status)
>         statusproc proftpd
>         ;;
>         
>         restart)
>         $0 stop
>         sleep 1
>         $0 start
>         ;;
> 
>         *)
>         echo "Usage: $0 {start|stop|status|restart}"
>         exit 1
>         ;;
> esac
> 
> # End $rc_base/init.d/proftpd
> EOF
> chmod 755 /etc/rc.d/init.d/proftpd
> ln -s /etc/rc.d/init.d/proftpd /etc/rc.d/rc1.d/K20proftpd
> ln -s /etc/rc.d/init.d/proftpd /etc/rc.d/rc2.d/K20proftpd
> ln -s /etc/rc.d/init.d/proftpd /etc/rc.d/rc3.d/S38proftpd
> ln -s /etc/rc.d/init.d/proftpd /etc/rc.d/rc4.d/S38proftpd
> ln -s /etc/rc.d/init.d/proftpd /etc/rc.d/rc5.d/S38proftpd
> ln -s /etc/rc.d/init.d/proftpd /etc/rc.d/rc6.d/K20proftpd
> ##############################################################
> # httpd                                                      #