Magellan Linux

Diff of /mage/branches/alx-0_6_0/profiles/alx-060/forced-uninstall

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2373 by niro, Tue Jun 14 10:44:21 2011 UTC revision 2790 by niro, Mon Aug 29 09:13:17 2011 UTC
# Line 1  Line 1 
1  #!/bin/bash  #!/bin/bash
2  # $Id$  # $Id$
3    
 # setup exit trap for reboot  
 trap_exit()  
 {  
  if [[ -f /.dist-upgrade ]]  
  then  
  rm -f /.dist-upgrade  
  # force a reboot at this point here  
  ( sleep 3 && reboot -f & ); exit 0  
  fi  
 }  
 trap "trap_exit" EXIT  
   
4  # get a suitable environment  # get a suitable environment
5  source /etc/profile  source /etc/profile
6    
7  MAGERC="/etc/mage.rc"  MAGERC="/etc/mage.rc"
8  MAGEPROFILE="alx-060"  MAGEPROFILE="alx-060"
9  NEW_MAGE_DISTRIBUTION="unstable"  NEW_MAGE_DISTRIBUTION="unstable"
10  NEW_RSYNC="rsync://magellan-linux.de/mage-alx-0.6.0"  #NEW_RSYNC="rsync://magellan-linux.de/mage-alx-0.6.0"
11  NEW_MIRRORS="http://magellan-linux.de/magellan/alx-0.6.0/${NEW_MAGE_DISTRIBUTION}"  #NEW_MIRRORS="http://magellan-linux.de/magellan/alx-0.6.0/${NEW_MAGE_DISTRIBUTION}"
12    NEW_RSYNC="rsync://128.20.41.110/mage-alx-060"
13    NEW_MIRRORS="http://128.20.41.110/magellan/alx-060"
14  NEW_PACKAGES_SERVER_PATH='packages/${ARCH}'  NEW_PACKAGES_SERVER_PATH='packages/${ARCH}'
15  NEW_MAGE_UNINSTALL_TIMEOUT=0  NEW_MAGE_UNINSTALL_TIMEOUT=0
16    
17  CONFIGRC="/etc/alxconfig-ng/config.rc"  CONFIGRC="/etc/alxconfig-ng/config.rc"
18  NEW_ALX_NETWORKING="dhcp"  NEW_ALX_NETWORKING="dhcp"
19  NEW_ALX_DHCP_PROG="/sbin/udhcpc"  NEW_ALX_DHCP_PROG="/sbin/udhcpc"
20  NEW_ALX_DHCP_START="-T 10"  NEW_ALX_DHCP_START="-T 10 -t 5 -n -i"
21  NEW_ALX_DHCP_STOP=""  NEW_ALX_DHCP_STOP=""
22  NEW_MIN_DISK_SPACE="85000"  NEW_MIN_DISK_SPACE="85000"
23    NEW_ALX_PLUGINS="/usr/lib/alxconfig-ng/plugins"
24    NEW_ALX_FUNCTIONS="/usr/lib/alxconfig-ng/functions"
25    
26    # fake mage upgrade to prevent annoying error messages
27    if [[ ! -x /usr/sbin/mageupgrade ]]
28    then
29     mageupgrade() { true; }; export -f mageupgrade
30    fi
31    
32  read_value()  read_value()
33  {  {
# Line 70  updateconfig() Line 68  updateconfig()
68   done   done
69  }  }
70    
71    updategrub2()
72    {
73     # create a device.map
74     if [[ ! -f /boot/grub/device.map ]]
75     then
76     grub-mkdevicemap
77     fi
78    
79     # needed by grub-mkconfig on the first run
80     if [[ ! -f /boot/grub/video.lst ]]
81     then
82     install -m0644 /lib/grub/*/video.lst /boot/grub/video.lst
83     fi
84    
85     # update grub.cfg
86     grub-mkconfig -o /boot/grub/grub.cfg
87    
88     # install bootloader to disk
89     local bootdisk
90     bootdisk="$(grub-probe --target=drive /boot | sed 's:(\(.*\),.*):(\1):')"
91    
92     # Generate core.img, but don't let it be installed in boot sector
93     grub-install --no-floppy "${bootdisk}"
94    }
95    
96  # fix mage.rc  # fix mage.rc
97  CONFIG="${MAGERC}"  CONFIG="${MAGERC}"
98  updateconfig RSYNC MIRRORS MAGE_DISTRIBUTION PACKAGES_SERVER_PATH MAGE_UNINSTALL_TIMEOUT  updateconfig RSYNC MIRRORS MAGE_DISTRIBUTION PACKAGES_SERVER_PATH MAGE_UNINSTALL_TIMEOUT
99    
100  # fix config.rc  # fix config.rc
101  CONFIG="${CONFIGRC}"  CONFIG="${CONFIGRC}"
102  updateconfig ALX_NETWORKING ALX_DHCP_PROG ALX_DHCP_START ALX_DHCP_STOP MIN_DISK_SPACE  updateconfig ALX_NETWORKING ALX_DHCP_PROG ALX_DHCP_START ALX_DHCP_STOP MIN_DISK_SPACE ALX_PLUGINS ALX_FUNCTIONS
103    
104  # fix profile  # fix profile
105  if [[ $(readlink /etc/mage-profile) != */${MAGEPROFILE} ]]  if [[ $(readlink /etc/mage-profile) != */${MAGEPROFILE} ]]
# Line 85  then Line 108  then
108   ln -snf /usr/mage/profiles/${MAGEPROFILE} /etc/mage-profile   ln -snf /usr/mage/profiles/${MAGEPROFILE} /etc/mage-profile
109  fi  fi
110    
111    # fix missing /dev/root device
112    if [[ ! -e /dev/root ]]
113    then
114     echo "fixing missing /dev/root symlink ..."
115     rootdev=$(basename $(mount | grep ' / ' | cut -d' ' -f1))
116     [[ -e /dev/${rootdev} ]] && ln -snf ${rootdev} /dev/root
117    fi
118    
119  # update mage3 -> mage4  # update mage3 -> mage4
120  if [[ -z $(magequery -n mage) ]]  if [[ -z $(magequery -n mage) ]]
121  then  then
# Line 113  then Line 144  then
144   touch /.dist-upgrade   touch /.dist-upgrade
145  fi  fi
146    
147  # check for -f option  # only run this if X11R6 is a directory and not a symlink
148  if [[ -n $(magequery -h | grep -- -f) ]]  if [[ -d /usr/X11R6 ]] && [[ ! -L /usr/X11R6 ]]
149  then  then
150   # uninstall all /usr/X11R6 packages first   # check for -f option
151   for i in $(magequery -f /usr/X11R6 | sed 's:.*/\(.*\)-.*-r.*:\1:')   if [[ -n $(magequery -h | grep -- -f) ]]
152   do   then
153   mage uninstall ${i}   # uninstall all /usr/X11R6 packages first
154   done   for i in $(magequery -f /usr/X11R6 | sed 's:.*/\(.*\)-.*-r.*:\1:')
155     do
156     mage uninstall ${i}
157     done
158     fi
159    
160     # if there are any files after uninstall, simply delete them
161     [ -d /usr/X11R6 ] && rm -rf /usr/X11R6
162  fi  fi
 # if /usr/X11R6 is a directoy, simply delete it with the content  
 [ -d /usr/X11R6 ] && rm -rf /usr/X11R6  
163    
164  # install new toolchain if not exist  # install new toolchain if not exist
165  TOOLCHAIN="$(< /etc/mage-profile/toolchain.defaults)"  TOOLCHAIN="$(< /etc/mage-profile/toolchain.defaults)"
# Line 146  BASESYSTEM="$(< /etc/mage-profile/basesy Line 182  BASESYSTEM="$(< /etc/mage-profile/basesy
182  if [[ -z $(magequery -n ${BASESYSTEM}) ]]  if [[ -z $(magequery -n ${BASESYSTEM}) ]]
183  then  then
184   # first keep some important files   # first keep some important files
185    
186   # export bootstrap to not start any services   # export bootstrap to not start any services
187   export MAGE_BOOTSTRAP=true   export MAGE_BOOTSTRAP=true
188   mage install ${BASESYSTEM}   mage install ${BASESYSTEM}
189   unset MAGE_BOOTSTRAP   unset MAGE_BOOTSTRAP
190    
191    # # fix locale
192    # echo "LANG=\"de_DE\"" > /etc/conf.d/locale
193    
194   # enable run of orphaned files check   # enable run of orphaned files check
195   touch /.orphaned   touch /.orphaned
196    
# Line 168  then Line 207  then
207   touch /.orphaned   touch /.orphaned
208  fi  fi
209    
 # etc-update  
 #etc-update  
   
210  # clean mage cache  # clean mage cache
211  mage clean  mage clean
212    
# Line 191  do Line 227  do
227   mage uninstall ${i}   mage uninstall ${i}
228  done  done
229    
230    if [[ -f /.orphaned ]]
231    then
232     echo "Searching for orphaned files and directories ..."
233     bash /etc/mage-profile/prune-orphaned-files
234     rm -f /.orphaned
235    fi
236    
237  if [[ -f /.dist-upgrade ]]  if [[ -f /.dist-upgrade ]]
238  then  then
239   # array of wireless opts   # array of wireless opts
# Line 227  then Line 270  then
270   install -d /etc/modprobe.d   install -d /etc/modprobe.d
271   mv ${i} /etc/modprobe.d/${i%.conf}.conf   mv ${i} /etc/modprobe.d/${i%.conf}.conf
272   done   done
273    
274     mount /boot &> /dev/null
275     # install an appropriate uvesafb.conf
276     install -d /etc/modprobe.d || die
277     echo "options uvesafb mode_option=1024x768-32@60 scroll=ywrap" > /etc/modprobe.d/uvesafb.conf || die
278     # create an updated initrd
279     DISKMODS="sd_mod"
280     OLDPATAMODS="amd74xx piix sis5513 via82cxxx"
281     PATAMODS="ata_piix pata_amd pata_mpiix pata_oldpiix pata_sis pata_via"
282     SATAMODS="sata_via sata_sis sata_nv"
283     DRMMODS="i915 mga nouveau r128 radeon savage sis tdfx ttm via"
284     FBMODS="uvesafb"
285     echo "MODULES=\"${FORMAT_FILESYSTEM} ${DISKMODS} ${OLDATAMODS} ${PATAMODS} ${SATAMODS} ${DRMMODS} ${FBMODS}\"" > /etc/conf.d/mkinitrd
286     kernelver=$(readlink /boot/vmlinuz | sed 's:kernel-::')
287     mkinitrd -f /boot/initrd-${kernelver}.img ${kernelver}
288     # update grub bootloader
289     updategrub2
290  fi  fi
291    
292  if [[ -f /.orphaned ]]  if [[ -f /.dist-upgrade ]]
293  then  then
294   echo "Searching for orphaned files and directories ..."   echo "preparing a reboot in 60 seconds ..."
295   bash /etc/mage-profile/prune-orphaned-files   # reboot via cronjob
296   rm -f /.orphaned   [[ ! -d /var/spool/cron/crontabs ]] && install -d /var/spool/cron/crontabs
297     # setup a proper cronjob
298     tmp=$(mktemp)
299     echo "* * * * * crontab -r && reboot -f" > ${tmp}
300     crontab ${tmp}
301     [[ -f ${tmp} ]] && rm -f ${tmp}
302     # start cron daemon in background
303     crond -b -S
304    
305     rm -f /.dist-upgrade
306  fi  fi
307    
308  #if [[ -f /.dist-upgrade ]]  exit 0
 #then  
 # rm -f /.dist-upgrade  
 # # force a reboot at this point here  
 # ( reboot -f & ); exit 0  
 #fi  

Legend:
Removed from v.2373  
changed lines
  Added in v.2790