Changeset 804

Show
Ignore:
Timestamp:
09/06/08 15:29:59 (3 months ago)
Author:
free
Message:

* Rewrote using python-augeas

Location:
ares/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • ares/trunk/ares-config

    r556 r804  
    1 #!/bin/sh 
     1#!/usr/bin/env python 
    22 
    3 dpkg-reconfigure arno-iptables-firewall 
    4 dpkg-reconfigure postfix 
    5 dpkg-reconfigure tzdata 
    6 make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/apache.pem 
    7 dpkg-reconfigure ares 
     3from ares import Ares 
     4 
     5ares = Ares(test=True) 
     6ares.ldap.setup() 
     7ares.squid.setup() 
     8ares.hostname.setup() 
     9ares.dnsmasq.setup() 
     10ares.hosts.setup() 
     11ares.monit.setup() 
     12ares.ssl.setup() 
     13ares.squirrel.setup() 
     14ares.amavis.setup() 
     15ares.spamassassin.setup() 
     16ares.fetchmail.setup() 
     17ares.samba.setup() 
     18ares.nfs.setup() 
     19ares.havp.setup() 
     20ares.apt.setup() 
     21ares.sshd.setup() 
     22ares.aug.save() 
     23ares.postconfig.setup() 
  • ares/trunk/debian/changelog

    r742 r804  
     1ares (0.2.4) 64studio; urgency=low 
     2 
     3  * Rewrote using python-augeas 
     4 
     5 -- Free Ekanayaka <freee@debian.org>  Sat, 06 Sep 2008 16:20:12 +0200 
     6 
    17ares (0.2.3) hardy-backports; urgency=low 
    28 
  • ares/trunk/debian/postinst

    r611 r804  
    55case "$1" in 
    66    configure) 
     7 
     8    exit 0 
    79 
    810    # Don't do anything on fresh installs 
  • ares/trunk/tests/TestAres.py

    r803 r804  
    1515    def test_ldap(self): 
    1616        ares = Ares(test=True) 
    17 #       ares.ldap.setup() 
    18 #       ares.squid.setup() 
    19 #         ares.hostname.setup() 
    20 #         ares.dnsmasq.setup() 
    21 #         ares.hosts.setup() 
    22 #         ares.monit.setup() 
    23 #         ares.ssl.setup() 
    24 #         ares.squirrel.setup() 
    25 #         ares.amavis.setup() 
    26 #         ares.spamassassin.setup() 
    27 #         ares.fetchmail.setup() 
    28 #         ares.samba.setup() 
    29 #         ares.nfs.setup() 
    30 #         ares.havp.setup() 
    31 #         ares.apt.setup() 
     17        ares.ldap.setup() 
     18        ares.squid.setup() 
     19        ares.hostname.setup() 
     20        ares.dnsmasq.setup() 
     21        ares.hosts.setup() 
     22        ares.monit.setup() 
     23        ares.ssl.setup() 
     24        ares.squirrel.setup() 
     25        ares.amavis.setup() 
     26        ares.spamassassin.setup() 
     27        ares.fetchmail.setup() 
     28        ares.samba.setup() 
     29        ares.nfs.setup() 
     30        ares.havp.setup() 
     31        ares.apt.setup() 
    3232        ares.sshd.setup() 
    3333        ares.aug.save()