Changeset 588

Show
Ignore:
Timestamp:
05/28/08 14:34:05 (6 months ago)
Author:
free
Message:

Imported eros

Files:
3 removed
5 modified
2 copied

Legend:

Unmodified
Added
Removed
  • eros/trunk/debian/README

    r556 r588  
    11After a fresh install: 
    22 
    3 1) Configure the network with /etc/network/interfaces 
    4  
    5 2) Run ares-config, for most questions defaults should be fine, but look out for 
    6    these important ones: 
    7  
    8    * arno-iptables-firewall: 
    9       - Internal network interfaces 
    10       - Internal subnets 
    11       - 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 host 
    17       - 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 
     1eros (0.1) hardy-backports; urgency=low 
    102 
    113  * Initial release 
    124 
    13  -- Free Ekanayaka <free@64studio.com>  Thu, 08 May 2008 21:55:32 +0200 
     5 -- Free Ekanayaka <freee@debian.org>  Wed, 28 May 2008 15:03:00 +0200 
  • eros/trunk/debian/control

    r567 r588  
    1 Source: ares 
     1Source: eros 
    22Section: admin 
    33Priority: extra 
     
    66Standards-Version: 3.7.2 
    77 
    8 Package: ares 
     8Package: eros 
    99Architecture: 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 
     10Depends: ${shlibs:Depends}, ${misc:Depends}, cdd-utils, auth-client-config, nfs-common, dhcp3-client 
     11Description: eros customisation package 
     12 This package configures and customises an eros 
    1613 machine. 
  • eros/trunk/debian/copyright

    r556 r588  
    1 This is ares, written and maintained by Free Ekanayaka <freee@debian.org> 
     1This is eros, written and maintained by Free Ekanayaka <freee@debian.org> 
    22on Thu, 27 Sep 2007 08:18:30 +0200. 
    33 
  • eros/trunk/debian/postinst

    r576 r588  
    66    configure) 
    77 
    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 
    6612 
    6713    ;;