Changeset 1227
- Timestamp:
- 01/17/12 08:58:52 (4 months ago)
- Location:
- main/linuxmuster-base/branches/testing
- Files:
-
- 4 edited
-
debian/changelog (modified) (2 diffs)
-
var/config-dynamic/00_stop-services/prepatch (modified) (2 diffs)
-
var/config-dynamic/01_network/interfaces.dedicated (modified) (1 diff)
-
var/config-dynamic/99_start-services/postpatch (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
main/linuxmuster-base/branches/testing/debian/changelog
r1226 r1227 1 linuxmuster-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 1 10 linuxmuster-base (6.0.0-2ubuntu0) lenny; urgency=low 2 11 … … 6 15 * fixed postgresql init skript name. 7 16 8 -- Thomas Schmitt <schmitt@lmz-bw.de> Mon, 16 Jan 2012 22: 08:23+010017 -- Thomas Schmitt <schmitt@lmz-bw.de> Mon, 16 Jan 2012 22:10:42 +0100 9 18 10 19 linuxmuster-base (6.0.0-1ubuntu0) lenny; urgency=low -
main/linuxmuster-base/branches/testing/var/config-dynamic/00_stop-services/prepatch
r1226 r1227 9 9 clamav-freshclam clamav-daemon cyrus2.2 postfix saslauthd amavis \ 10 10 mysql openntpd ssh samba slapd postgresql nscd portmap \ 11 openbsd-inetd bind9 isc-dhcp-server "11 openbsd-inetd bind9 isc-dhcp-server dbus" 12 12 13 13 # make sure they are enabled to be able to shut them down … … 17 17 for service in $services; do 18 18 [ -e "/etc/init.d/$service" ] && /etc/init.d/$service stop 19 [ -e "/etc/init/$service.conf" ] && stop $service 19 20 done 20 21 22 # fix run directory 23 if [ ! -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 32 fi 33 -
main/linuxmuster-base/branches/testing/var/config-dynamic/01_network/interfaces.dedicated
r787 r1227 15 15 broadcast @@broadcast@@ 16 16 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 61 61 62 62 # start services not yet started 63 services=" openbsd-inetd atd cron openntpd linuxmuster-base"63 services="dbus openbsd-inetd atd cron openntpd linuxmuster-base" 64 64 for 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 66 67 done 67 68
Note: See TracChangeset
for help on using the changeset viewer.
