Changeset 1226


Ignore:
Timestamp:
01/16/12 22:10:37 (4 months ago)
Author:
tschmitt
Message:
  • linuxmuster-setup:
    • Postgresql-Startskriptaufruf gefixt.
    • uid von vboxadd user wird korrigiert.
    • adduser statt useradd zum Anlegen von Systemusern.
Location:
main/linuxmuster-base/branches/testing
Files:
5 edited

Legend:

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

    r1223 r1226  
     1linuxmuster-base (6.0.0-2ubuntu0) lenny; urgency=low 
     2 
     3  * linuxmuster-setup: 
     4    * using adduser instead of useradd to create system users. 
     5    * corrects uid of vboxadd user. 
     6    * fixed postgresql init skript name. 
     7 
     8 -- Thomas Schmitt <schmitt@lmz-bw.de>  Mon, 16 Jan 2012 22:08:23 +0100 
     9 
    110linuxmuster-base (6.0.0-1ubuntu0) lenny; urgency=low 
    211 
     
    817  * server task updates. 
    918 
    10  -- Thomas Schmitt <schmitt@lmz-bw.de>  Mon, 16 Jan 2012 20:14:08 +0100 
     19 -- Thomas Schmitt <schmitt@lmz-bw.de>  Mon, 16 Jan 2012 20:42:31 +0100 
    1120 
    1221linuxmuster-base (6.0.0-0ubuntu0) lenny; urgency=low 
  • main/linuxmuster-base/branches/testing/sbin/linuxmuster-setup

    r1220 r1226  
    9898    fi 
    9999 
    100     # turn shadow passwords on, deprecated? 
     100    # turn shadow passwords on 
    101101    #shadowconfig on | tee -a $logfile 
     102     
     103    # correct vboxadd 
     104    id vboxadd &> /dev/null && userdel vboxadd 
     105    adduser --ingroup daemon --gecos "VirtualBox guest additions user" --system --home /var/run/vboxadd --shell /bin/false vboxadd 
     106    mkdir -p /var/run/vboxadd 
     107    chown vboxadd:daemon /var/run/vboxadd 
    102108 
    103109    # add cyrus user 
    104     id cyrus &> /dev/null || useradd -c "Cyrus Mailsystem User" -d /var/spool/cyrus -g mail -m -r -s /bin/sh cyrus | tee -a $logfile 
     110    id cyrus &> /dev/null || adduser --gecos "Cyrus Mailsystem User" --home /var/spool/cyrus -ingroup mail --system --shell /bin/sh cyrus | tee -a $logfile 
     111    mkdir -p /var/spool/cyrus 
     112    chown cyrus:mail /var/spool/cyrus 
    105113 
    106114    # install paedml release key 
  • main/linuxmuster-base/branches/testing/var/config-dynamic/00_stop-services/prepatch

    r1223 r1226  
    88          linbo-multicast nagios3 atd cron rembo quota apache2 cups \ 
    99          clamav-freshclam clamav-daemon cyrus2.2 postfix saslauthd amavis \ 
    10           mysql openntpd ssh samba slapd postgresql-9.1 nscd portmap \ 
     10          mysql openntpd ssh samba slapd postgresql nscd portmap \ 
    1111          openbsd-inetd bind9 isc-dhcp-server" 
    1212 
  • main/linuxmuster-base/branches/testing/var/config-dynamic/15_ldap/postpatch

    r1223 r1226  
    153153chmod 700 /var/lib/ldap 
    154154chmod 600 /var/lib/ldap/* 
    155 rm /etc/pam_ldap.secret 
     155rm -f /etc/pam_ldap.secret 
    156156ln -sf ldap.secret /etc/pam_ldap.secret 
    157157 
  • main/linuxmuster-base/branches/testing/var/config-dynamic/15_ldap/prepatch

    r1223 r1226  
    1919fi 
    2020 
    21 /etc/init.d/postgresql-9.1 start 
     21/etc/init.d/postgresql start 
    2222 
    2323# clear samba browse cache 
Note: See TracChangeset for help on using the changeset viewer.