summaryrefslogblamecommitdiffstats
path: root/src/os-plugins/plugins/desktop/XX_desktop.sh
blob: ea3e2be917138bd44223a60207e0d96d971cdc8a (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                         
 
                                                       
 


                                                                          

                                                   
                       

                                                                          
 

                                                                                      
  
                                                                      


                                                                                

                                                                       
      
 
                                                                
                                                                                   

      


                                                                      
  
# Copyright (c) 2007..2008 - RZ Uni Freiburg
# Copyright (c) 2008 - OpenSLX GmbH
#
# This program/file is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your feedback to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org
#
# stage3 part of 'desktop' plugin - the runlevel script
#
# script is included from init via the "." load function - thus it has all
# variables and functions available

if [ -e /initramfs/plugin-conf/desktop.conf ]; then
  . /initramfs/plugin-conf/desktop.conf
  . /etc/slxsystem.conf
  if [ $desktop_active -ne 0 ]; then
    [ $DEBUGLEVEL -gt 0 ] && echo "executing the 'desktop' os-plugin ...";

    ln -sf /opt/openslx/plugin-repo/desktop/themes/common/${slxconf_distro_name}.png \
           /mnt/etc/distro.png
  
    # problem which occurs if exporting was forgotten (quick fix code)
    if [ -e /mnt/opt/openslx/plugin-repo/desktop/${desktop_manager}/desktop.sh ]
      then . /mnt/opt/openslx/plugin-repo/desktop/${desktop_manager}/desktop.sh
    else
      error "This shouldn't fail - you might have forgotten to export \
your system." fatal
    fi

    if [ -e /mnt/opt/openslx/plugin-repo/desktop/fixICEauth.sh ]
    then cp  /mnt/opt/openslx/plugin-repo/desktop/fixICEauth.sh /mnt/etc/profile.d/
    fi

    [ $DEBUGLEVEL -gt 0 ] && echo "done with 'desktop' os-plugin ...";

  fi
fi