[Erp5-report] r13194 - /umigumi/trunk/config/erp5_cd.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Fri Mar 2 18:02:42 CET 2007
Author: kevin
Date: Fri Mar 2 18:02:40 2007
New Revision: 13194
URL: http://svn.erp5.org?rev=13194&view=rev
Log:
25th build.
Re-activate oood service.
Fix chkconfig command line.
Update list of started and stopped services.
Memcached should be patched to comply with LSB.
Modified:
umigumi/trunk/config/erp5_cd.py
Modified: umigumi/trunk/config/erp5_cd.py
URL: http://svn.erp5.org/umigumi/trunk/config/erp5_cd.py?rev=13194&r1=13193&r2=13194&view=diff
==============================================================================
--- umigumi/trunk/config/erp5_cd.py (original)
+++ umigumi/trunk/config/erp5_cd.py Fri Mar 2 18:02:40 2007
@@ -27,7 +27,7 @@
### Metadatas
description = """ERP5 LiveCD demonstrates the power of ERP5 the Open Source ERP Software by Nexedi."""
canonical_name = 'ERP5 LiveCD'
-version = '1.0rc12-build22'
+version = '1.0rc12-build25'
### Kernels
@@ -148,9 +148,9 @@
, "grep -RIl '/var/spool/postfix' /etc/ | xargs -i sed -i -e 's/\/var\/spool\/postfix/\/etc\/postfix\/chroot/g' {}"
# Increase and add some oood timeouts for the live CD because CDROM are slower than HDD !
- #, 'sed -i -e "s/# Initialize the Pool/# Initialize the Pool\\n sleep 180 # Hack for Live CD: wait a bit to let dm service start completely, else oood will fail to run/g" /etc/rc.d/init.d/oood'
- #, 'sed -i -e "s/instance_load_time = 120/instance_load_time = 210/g" /etc/oood/config.py'
- #, 'sed -i -e "s/sleep 10/sleep 30/g" /etc/rc.d/init.d/oood'
+ , 'sed -i -e "s/# Initialize the Pool/# Initialize the Pool\\n sleep 180 # Hack for Live CD: wait a bit to let dm service start completely, else oood will fail to run/g" /etc/rc.d/init.d/oood'
+ , 'sed -i -e "s/instance_load_time = 120/instance_load_time = 210/g" /etc/oood/config.py'
+ , 'sed -i -e "s/sleep 10/sleep 30/g" /etc/rc.d/init.d/oood'
# Remove mandriva welcome screen auto-startup
, 'touch /usr/share/config/mandrivagalaxyrc'
@@ -271,7 +271,7 @@
, 'openoffice.org-freedesktop-menus-2.1'
, 'openoffice.org-kde-integration-2.1.0'
, 'openoffice.org-mandriva-menus-2.1'
-#, 'openoffice.org-oood'
+, 'openoffice.org-oood'
# Graphics
, 'gimp', 'gimp-python', 'gimp-data-extras'
, 'scribus', 'kooka', 'dia', 'kdegraphics-kpdf', 'kbarcode'
@@ -490,46 +490,67 @@
### Service to not start at boot time
disabled_service_list = (
'alsa'
+ , 'avahi-daemon'
, 'bacula-fd'
, 'crond'
- , 'cups'
- , 'cvs'
- , 'keytable'
+ , 'cups' # cups start is managed by /root/autoconf.py
+ , 'cups-lpd' # this service is xinetd-based
+ , 'cvs' # this service is xinetd-based
, 'kheader'
- , 'mDNSResponder'
, 'messagebus'
- , 'mysqld-max'
+ , 'mtink'
+ , 'mysqld-max' # mysqld is managed by /etc/rc.d/init.d/erp5cdtool
+ , 'mysqld-ndbd'
+ , 'mysqld-ndb_cpcd'
+ , 'mysqld-ndb_mgmd'
, 'netfs'
- , 'netplugd'
, 'nfs'
, 'nfslock'
- , 'nifd'
, 'oki4daemon'
, 'openvpn'
, 'partmon'
, 'portmap'
- , 'rsync'
+ , 'rpcgssd'
+ , 'rpcidmapd'
+ , 'rpcsvcgssd'
+ , 'rsync' # this service is xinetd-based
, 'sound'
- , 'squid'
- , 'svnserve'
+ , 'sshd'
, 'ultrabayd'
- , 'zope'
+ , 'zope' # mysqld is managed by /etc/rc.d/init.d/erp5cdtool
)
### Service to start at boot time
enabled_service_list = (
- # Be sure dbus is active (else usb enclosure devices will not be created)
- 'dbus'
+ 'apmiser'
+ , 'cpufreq'
+ , 'dm'
+ , 'erp5cdtool'
+ , 'haldaemon'
+ , 'harddrake'
+ , 'htcacheclean'
+ , 'httpd'
+ , 'keytable'
+ , 'mdadm'
+ , 'memcached'
+ , 'network'
+ , 'network-up'
+ , 'ntpd'
+ , 'oood'
, 'postfix'
- , 'erp5cdtool'
- #, 'oood'
+ , 'sshd-xinetd' # this service is xinetd-based
+ , 'syslog'
+ , 'wlan'
+ , 'xfs'
+ , 'xinetd'
)
### Service to patch for LSB compliance
non_lsb_compliance_service_list = (
'ultrabayd'
+ , 'memcached'
, 'bacula-fd'
, 'zope'
, 'oki4daemon'
@@ -560,8 +581,8 @@
### Switch on/off services at boot
-service_dict = { "on" : enabled_service_list
- , "off": disabled_service_list
+service_dict = { "--del": disabled_service_list
+ , "--add": enabled_service_list
}
service_commands = ()
for (state, service_list) in service_dict.items():
More information about the Erp5-report
mailing list