Changeset 1013


Ignore:
Timestamp:
03/13/11 18:59:28 (14 months ago)
Author:
fsch
Message:

Backup

Location:
client/linuxmuster-client/branches/luh_branch
Files:
2 edited
2 moved

Legend:

Unmodified
Added
Removed
  • client/linuxmuster-client/branches/luh_branch/debian/changelog

    r1012 r1013  
    1 linuxmuster-client (0.9.20-21) testing; urgency=low 
     1linuxmuster-client (0.9.20-22) testing; urgency=low 
    22 
    33   * First package with local userhome 
     
    1414   * Added tools directory to share, skripts for setting up pykota an do a 
    1515     first run over sane settings for the default user 
     16   * pykoticon setup tool creates autostart file for gnome 
    1617 
    1718 -- Frank Schiebel <frank@linuxmuster.net>  Sat, 12 Mar 2011 19:25:00 +0100 
  • client/linuxmuster-client/branches/luh_branch/lucid/templates/etc/linuxmuster-client/mount.d/05_firefox.sh

    r1003 r1013  
    2626 
    2727# create it if it was not copied 
    28 [ -d $HOME/$APPS_BASEDIR/$FIREFOX_PROFILE ] || mkdir $HOME/$APPS_BASEDIR/$FIREFOX_PROFILE 
     28[ -d $HOME/$APPS_BASEDIR/$FIREFOX_PROFILE ] || mkdir -p $HOME/$APPS_BASEDIR/$FIREFOX_PROFILE 
    2929 
    3030fi 
  • client/linuxmuster-client/branches/luh_branch/share/tools/lmc-firstconfigure.sh

    r1012 r1013  
    44. /etc/linuxmuster-client/config 
    55 
    6 if [ "x$TEMPLATE_USER" == "x" ]; 
     6if [ "x$TEMPLATE_USER" == "x" ]; then 
    77    echo "Kein Templatebenutzer gefunden, ist linuxmuster-client korrekt eingerichtet?" 
    88    exit 1 
     
    1212if [ -f /etc/xdg/autostart/update-notifier.desktop ]; then 
    1313    rm -f /etc/xdg/autostart/update-notifier.desktop 
    14     echo "Deaktiviere automatishe Updatechecks" 
    15     echo "      Lösche /etc/xdg/autostart/update-notifier.desktop" 
    16     echo "erledigt." 
    17     echo 
    18 else 
    19     echo "Automatische Updatechecks sind bereits deaktiviert" 
    2014fi 
    21  
    22  
    2315# Benutzerliste in gdm deaktivieren 
    2416sudo -u gdm gconftool-2 -t bool -s /apps/gdm/simple-greeter/disable_user_list true 
     
    3224# Benutzeranzeige entfernen 
    3325dpkg --remove indicator-me > /dev/null 2>&1 
     26# Abmelden Starter auf den Desktop des Vorlagenbenutzers 
     27( 
     28cat << EOF 
     29#!/usr/bin/env xdg-open 
    3430 
     31[Desktop Entry] 
     32Version=1.0 
     33Type=Application 
     34Terminal=false 
     35Icon[de_DE]=/usr/share/icons/Humanity/apps/48/gnome-session-halt.svg 
     36Name[de_DE]=Abmelden 
     37Exec=gnome-session-save --logout 
     38Comment[de_DE]=Abmelden 
     39Name=Abmelden 
     40Comment=Abmelden 
     41Icon=/usr/share/icons/Humanity/apps/48/gnome-session-halt.svg 
     42EOF 
     43) > /home/linuxadmin/Desktop/Abmelden.desktop 
     44 
  • client/linuxmuster-client/branches/luh_branch/share/tools/lmc-setup-pykoticon.sh

    r1012 r1013  
    55# Frank Schiebel 
    66# 
     7# Install wxgtk as a dep 
     8apt-get install python-wxgtk2.6 
     9# change to source dir 
     10cd /usr/share/linuxmuster-client/pykoticon-1.02/ 
     11# install package 
     12python setup.py install 
     13# link icon dirs correctly 
     14if [ -L /usr/share/pykoticon ]; then 
     15    rm /usr/share/pykoticon 
     16fi 
     17ln -s /usr/local/share/pykoticon/ /usr/share/pykoticon 
     18cd 
    719 
    820 
     21SERVERIP=`grep uri /etc/ldap.conf | grep -v ^# | awk -F"//" '{print $2}' | awk -F"/" '{print $1}'` 
     22 
     23( 
     24cat << EOF 
     25[Desktop Entry] 
     26Type=Application 
     27Name=PykotIcon Print-Quota notifier 
     28Exec=/usr/local/bin/pykoticon $SERVERIP 
     29Comment=Show messages from pykota 
     30Icon=folder-remote 
     31Terminal=false 
     32Categories= 
     33OnlyShowIn=GNOME; 
     34X-GNOME-Autostart-Delay=10 
     35EOF 
     36) > /etc/xdg/autostart/pykoticon.desktop 
Note: See TracChangeset for help on using the changeset viewer.