Changeset 1227


Ignore:
Timestamp:
01/17/12 08:58:52 (4 months ago)
Author:
tschmitt
Message:
  • linuxmuster-setup:
    • /etc/network/interfaces: DNS-Einträge entfernt.
    • start-/stop-Fixes für Dienste.
    • Verschiebe /var/run and /var/lock nach /run.
Location:
main/linuxmuster-base/branches/testing
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • main/linuxmuster-base/branches/testing/debian/changelog

    r1226 r1227  
     1linuxmuster-base (6.0.0-3ubuntu0) lenny; urgency=low 
     2 
     3  * linuxmuster-setup: 
     4    * service stop and start fixes. 
     5    * fix: move /var/run and /var/lock to /run and substitute old dirs with links to new dirs. 
     6    * /etc/network/interfaces: removed dns entries for intern interface. 
     7 
     8 -- Thomas Schmitt <schmitt@lmz-bw.de>  Tue, 17 Jan 2012 08:53:42 +0100 
     9 
    110linuxmuster-base (6.0.0-2ubuntu0) lenny; urgency=low 
    211 
     
    615    * fixed postgresql init skript name. 
    716 
    8  -- Thomas Schmitt <schmitt@lmz-bw.de>  Mon, 16 Jan 2012 22:08:23 +0100 
     17 -- Thomas Schmitt <schmitt@lmz-bw.de>  Mon, 16 Jan 2012 22:10:42 +0100 
    918 
    1019linuxmuster-base (6.0.0-1ubuntu0) lenny; urgency=low 
  • main/linuxmuster-base/branches/testing/var/config-dynamic/00_stop-services/prepatch

    r1226 r1227  
    99          clamav-freshclam clamav-daemon cyrus2.2 postfix saslauthd amavis \ 
    1010          mysql openntpd ssh samba slapd postgresql nscd portmap \ 
    11           openbsd-inetd bind9 isc-dhcp-server" 
     11          openbsd-inetd bind9 isc-dhcp-server dbus" 
    1212 
    1313# make sure they are enabled to be able to shut them down 
     
    1717for service in $services; do 
    1818 [ -e "/etc/init.d/$service" ] && /etc/init.d/$service stop 
     19 [ -e "/etc/init/$service.conf" ] && stop $service 
    1920done 
    2021 
     22# fix run directory 
     23if [ ! -d /run/lock ]; then 
     24 echo "fix run directory" 
     25 ls -l /var/run >> $logfile 
     26 ls -l /var/lock >> $logfile 
     27 mkdir -p /run/lock 
     28 rm -rf /var/run 
     29 rm -rf /var/lock 
     30 ln -s /run /var/run 
     31 ln -s /run/lock /var/lock 
     32fi 
     33 
  • main/linuxmuster-base/branches/testing/var/config-dynamic/01_network/interfaces.dedicated

    r787 r1227  
    1515        broadcast @@broadcast@@ 
    1616        gateway @@ipcopip@@ 
    17         # dns-* options are implemented by the resolvconf package, if installed 
    18         dns-nameservers @@serverip@@ 
    19         dns-search @@domainname@@ 
     17 
  • main/linuxmuster-base/branches/testing/var/config-dynamic/99_start-services/postpatch

    r1223 r1227  
    6161 
    6262# start services not yet started 
    63 services="openbsd-inetd atd cron openntpd linuxmuster-base" 
     63services="dbus openbsd-inetd atd cron openntpd linuxmuster-base" 
    6464for service in $services; do 
    65  [ -e "$service" ] && /etc/init.d/$service start 
     65 [ -e "/etc/init.d/$service" ] && /etc/init.d/$service start 
     66 [ -e "/etc/init/$service.conf" ] && start $service 
    6667done 
    6768 
Note: See TracChangeset for help on using the changeset viewer.