Changeset 1234
- Timestamp:
- 01/18/12 17:17:08 (4 months ago)
- Location:
- main/linuxmuster-base/branches/testing
- Files:
-
- 6 edited
-
debian/changelog (modified) (2 diffs)
-
share/scripts/helperfunctions.sh (modified) (1 diff)
-
share/scripts/linuxmuster-patch (modified) (1 diff)
-
var/config-dynamic/01_network/interfaces (modified) (1 diff)
-
var/config-dynamic/15_ldap/ldap.ldif (modified) (1 diff)
-
var/config-dynamic/15_ldap/postpatch (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
main/linuxmuster-base/branches/testing/debian/changelog
r1233 r1234 1 linuxmuster-base (6.0.0-5ubuntu0) lenny; urgency=low 2 3 * helperfunctions.sh, assign_nics(): checks existance of network.settings before iface_lan is written. 4 * linuxmuster-setup: 5 * network: fixed interface name. 6 * ldap: using ldif instead of sophomorix-dump-pg2ldap. 7 8 -- Thomas Schmitt <schmitt@lmz-bw.de> Wed, 18 Jan 2012 17:10:16 +0100 9 1 10 linuxmuster-base (6.0.0-4ubuntu0) lenny; urgency=low 2 11 … … 8 17 * added linuxmuster-nagios-base to server task again. 9 18 10 -- Thomas Schmitt <schmitt@lmz-bw.de> Tue, 17 Jan 2012 23: 19:23+010019 -- Thomas Schmitt <schmitt@lmz-bw.de> Tue, 17 Jan 2012 23:21:41 +0100 11 20 12 21 linuxmuster-base (6.0.0-3ubuntu0) lenny; urgency=low -
main/linuxmuster-base/branches/testing/share/scripts/helperfunctions.sh
r1230 r1234 473 473 474 474 # write iface to network.settings 475 if grep -q ^iface_lan $NETWORKSETTINGS; then 476 sed -e "s|^iface_lan=.*|iface_lan=$iface_lan|" -i $NETWORKSETTINGS 477 else 478 echo "iface_lan=$iface_lan" >> $NETWORKSETTINGS 475 if [ -e "$NETWORKSETTINGS" ]; then 476 if grep -q ^iface_lan $NETWORKSETTINGS; then 477 sed -e "s|^iface_lan=.*|iface_lan=$iface_lan|" -i $NETWORKSETTINGS 478 else 479 echo "iface_lan=$iface_lan" >> $NETWORKSETTINGS 480 fi 479 481 fi 480 482 -
main/linuxmuster-base/branches/testing/share/scripts/linuxmuster-patch
r1230 r1234 216 216 s/@@ipcoporange@@/${ipcoporange}/g 217 217 s/@@ipcopovpn@@/${ipcopovpn}/g 218 s/@@iface_lan@@/${iface_lan}/g 218 219 s/@@broadcast@@/${broadcast}/g 219 220 s/@@internsub@@/${internsub}/g -
main/linuxmuster-base/branches/testing/var/config-dynamic/01_network/interfaces
r1230 r1234 9 9 # These interfaces are brought up automatically 10 10 auto intern 11 iface interninet static11 iface @@iface_lan@@ inet static 12 12 address @@serverip@@ 13 13 netmask @@internmask@@ -
main/linuxmuster-base/branches/testing/var/config-dynamic/15_ldap/ldap.ldif
r1207 r1234 3 3 objectClass: organization 4 4 o: linuxmuster 5 dc: paedml-linux5 dc: linuxmuster 6 6 structuralObjectClass: organization 7 7 entryUUID: b74928aa-d314-1030-98de-bd3e6f095251 -
main/linuxmuster-base/branches/testing/var/config-dynamic/15_ldap/postpatch
r1233 r1234 74 74 75 75 # create new ldap tree 76 #rm -rf /etc/ldap/slapd.d 77 #mkdir -p /etc/ldap/slapd.d 78 #chattr +i /var/lib/ldap/DB_CONFIG 79 #rm -f /var/lib/ldap/* 80 #chattr -i /var/lib/ldap/DB_CONFIG 81 #slapadd < /var/tmp/ldap.ldif 82 #chown openldap:openldap /var/lib/ldap -R 83 #slaptest -f /etc/ldap/slapd.conf -F /etc/ldap/slapd.d 84 #chown -R openldap:openldap /etc/ldap/slapd.d 76 rm -rf /etc/ldap/slapd.d 77 mkdir -p /etc/ldap/slapd.d 78 chattr +i /var/lib/ldap/DB_CONFIG 79 rm -f /var/lib/ldap/* 80 chattr -i /var/lib/ldap/DB_CONFIG 81 sed -e "s|^dc:.*|${domainname%.*}|" -i /var/tmp/ldap.ldif 82 slapadd < /var/tmp/ldap.ldif 83 chown openldap:openldap /var/lib/ldap -R 84 slaptest -f /etc/ldap/slapd.conf -F /etc/ldap/slapd.d 85 chown -R openldap:openldap /etc/ldap/slapd.d 85 86 86 87 # changing user's default shell to /bin/bash … … 158 159 159 160 # recreate ldap tree 160 sophomorix-dump-pg2ldap161 #sophomorix-dump-pg2ldap 161 162 162 163 rm -f /var/tmp/ldap.*
Note: See TracChangeset
for help on using the changeset viewer.
