Changeset 588
- Timestamp:
- 05/28/08 14:34:05 (6 months ago)
- Files:
-
- 3 removed
- 5 modified
- 2 copied
-
ares/trunk/ares-config (deleted)
-
ares/trunk/debian/install (deleted)
-
ares/trunk/debian/templates (deleted)
-
eros (copied) (copied from ares)
-
eros/trunk (copied) (copied from ares/trunk)
-
eros/trunk/debian/README (modified) (1 diff)
-
eros/trunk/debian/changelog (modified) (1 diff)
-
eros/trunk/debian/control (modified) (2 diffs)
-
eros/trunk/debian/copyright (modified) (1 diff)
-
eros/trunk/debian/postinst (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
eros/trunk/debian/README
r556 r588 1 1 After a fresh install: 2 2 3 1) Configure the network with /etc/network/interfaces4 5 2) Run ares-config, for most questions defaults should be fine, but look out for6 these important ones:7 8 * arno-iptables-firewall:9 - Internal network interfaces10 - Internal subnets11 - Internal networks with access to external networks (should equal Internal subnet)12 -13 14 * postfix:15 - System mail name (e.g. ares.clientdomain.com)16 - SMTP relay host17 - Root and postmaster mail recipient (e.g. free@64studio.com)18 - Other destinations to accept mail for (include ares.clientdomain.com)19 - Local networks (include the subnet defined in arno)20 21 Finally reboot the machine, as all services have to be restarted.22 -
eros/trunk/debian/changelog
r576 r588 1 ares (0.2.1) hardy-backports; urgency=low 2 3 * Don't do anything on new installs 4 * cdd-config APT change: hostname to fqdn 5 * Enable apache ssl modules 6 7 -- Free Ekanayaka <freee@debian.org> Thu, 22 May 2008 09:54:54 +0100 8 9 ares (0.1) hardy-backports; urgency=low 1 eros (0.1) hardy-backports; urgency=low 10 2 11 3 * Initial release 12 4 13 -- Free Ekanayaka <free @64studio.com> Thu, 08 May 2008 21:55:32+02005 -- Free Ekanayaka <freee@debian.org> Wed, 28 May 2008 15:03:00 +0200 -
eros/trunk/debian/control
r567 r588 1 Source: ares1 Source: eros 2 2 Section: admin 3 3 Priority: extra … … 6 6 Standards-Version: 3.7.2 7 7 8 Package: ares8 Package: eros 9 9 Architecture: all 10 Depends: ${shlibs:Depends}, ${misc:Depends}, cdd-utils, libcrypt-passwdmd5-perl, 11 arno-iptables-firewall, squid, postfix, dnsmasq, monit, squirrelmail, 12 amavisd-new, slapd, spamassassin, fetchmail, samba, webmin, nfs-kernel-server, 13 havp, klogd, 14 Description: Ares customisation package 15 This package configures and customises an Ares 10 Depends: ${shlibs:Depends}, ${misc:Depends}, cdd-utils, auth-client-config, nfs-common, dhcp3-client 11 Description: eros customisation package 12 This package configures and customises an eros 16 13 machine. -
eros/trunk/debian/copyright
r556 r588 1 This is ares, written and maintained by Free Ekanayaka <freee@debian.org>1 This is eros, written and maintained by Free Ekanayaka <freee@debian.org> 2 2 on Thu, 27 Sep 2007 08:18:30 +0200. 3 3 -
eros/trunk/debian/postinst
r576 r588 6 6 configure) 7 7 8 # Don't do anything on fresh installs 9 if [ "x$2" == "x" ]; then 10 exit 0 11 fi 12 13 templates="manager-password backup-device backup-vendor backup-model" 14 15 for i in $templates; do 16 RET="" 17 while [ "x$RET" = "x" ]; do 18 db_fset ares/$i seen false 19 db_input high ares/$i || true 20 db_go 21 db_get ares/$i 22 done 23 done 24 25 db_get ares/manager-password 26 password="$RET" 27 cdd-config manager $password 28 29 db_get ares/backup-device 30 device="$RET" 31 db_get ares/backup-vendor 32 vendor="$(echo "$RET"|sed -e 's/ /%SPACE%/g')" 33 db_get ares/backup-model 34 model="$(echo "$RET"|sed -e 's/ /%SPACE%/g')" 35 cdd-config backup "$device" "$vendor" "$model" 36 37 db_get arno-iptables-firewall/config-int-net 38 net="$RET" 39 cdd-config squid $net 40 41 db_get postfix/mailname 42 hostname="$RET" 43 cdd-config fqdn $hostname 44 45 db_get postfix/root_address 46 root="$RET" 47 cdd-config postfix $root 48 49 cdd-config dnsmasq $(echo $net |cut -f 1-3 -d .) 50 cdd-config hosts $(echo $net |cut -f 1-3 -d .).1 $hostname ares 51 cdd-config monit 52 cdd-config ssl 53 cdd-config squirrelmail $hostname 54 cdd-config amavis $hostname 55 56 cdd-config ldap server 57 cdd-config ldap client 58 cdd-config spamassassin 59 cdd-config fetchmail 60 cdd-config samba 61 cdd-config webmin 62 cdd-config nfs server 63 cdd-config havp 64 cdd-config klogd 65 cdd-config apt ares hardy 8 cdd-config ldap client 9 cdd-config nfs client 10 cdd-config dhclient 11 cdd-config apt eros hardy 66 12 67 13 ;;
