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 2081 by niro, Wed May 11 22:17:14 2011 UTC revision 2728 by niro, Thu Aug 11 12:08:18 2011 UTC
# Line 1  Line 1 
1  #!/bin/bash  #!/bin/bash
2  # $Id$  # $Id$
3    
4    # get a suitable environment
5    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"
# Line 9  NEW_MIRRORS="http://magellan-linux.de/ma Line 12  NEW_MIRRORS="http://magellan-linux.de/ma
12  NEW_PACKAGES_SERVER_PATH='packages/${ARCH}'  NEW_PACKAGES_SERVER_PATH='packages/${ARCH}'
13  NEW_MAGE_UNINSTALL_TIMEOUT=0  NEW_MAGE_UNINSTALL_TIMEOUT=0
14    
15  # fix mage.rc  CONFIGRC="/etc/alxconfig-ng/config.rc"
16  for i in RSYNC MIRRORS MAGE_DISTRIBUTION PACKAGES_SERVER_PATH MAGE_UNINSTALL_TIMEOUT  NEW_ALX_NETWORKING="dhcp"
17  do  NEW_ALX_DHCP_PROG="/sbin/udhcpc"
18   value="$(eval echo \${NEW_${i}})"  NEW_ALX_DHCP_START="-T 10 -t 5 -n -i"
19   if [[ ! -z $(grep "^${i}=" ${MAGERC}) ]]  NEW_ALX_DHCP_STOP=""
20    NEW_MIN_DISK_SPACE="85000"
21    NEW_ALX_PLUGINS="/etc/alxconfig-ng/plugins"
22    
23    read_value()
24    {
25     local file=$1
26     local var=$2
27     local value
28    
29     [[ ! -e ${file} ]] && return 1
30    
31     value=$(source ${file}; echo $(eval echo \${${var}}))
32     echo "${value}"
33     return 0
34    }
35    
36    updateconfig()
37    {
38     local variables="$@"
39     local value
40     local i
41    
42     if [[ -z ${CONFIG} ]]
43   then   then
44   echo "fixing $i -> ${value}"   echo "You must define \$CONFIG varibale first!"
45   sed -i "s|^\(${i}=\).*|\1\"${value}\"|" ${MAGERC}   return 1
  else  
  echo "adding $i=${value}"  
  echo "${i}=\"${value}\"" >> ${MAGERC}  
46   fi   fi
47  done  
48     for i in ${variables}
49     do
50     value="$(eval echo \${NEW_${i}})"
51     if [[ ! -z $(grep "^${i}=" ${CONFIG}) ]]
52     then
53     echo "fixing ${i} -> ${value}"
54     sed -i "s|^\(${i}=\).*|\1\"${value}\"|" ${CONFIG}
55     else
56     echo "adding ${i}=${value}"
57     echo "${i}=\"${value}\"" >> ${CONFIG}
58     fi
59     done
60    }
61    
62    updategrub2()
63    {
64     # create a device.map
65     if [[ ! -f /boot/grub/device.map ]]
66     then
67     grub-mkdevicemap
68     fi
69    
70     # needed by grub-mkconfig on the first run
71     if [[ ! -f /boot/grub/video.lst ]]
72     then
73     install -m0644 /lib/grub/*/video.lst /boot/grub/video.lst
74     fi
75    
76     # update grub.cfg
77     grub-mkconfig -o /boot/grub/grub.cfg
78    
79     # install bootloader to disk
80     local bootdisk
81     bootdisk="$(grub-probe --target=drive /boot | sed 's:(\(.*\),.*):(\1):')"
82    
83     # Generate core.img, but don't let it be installed in boot sector
84     grub-install --no-floppy "${bootdisk}"
85    }
86    
87    # fix mage.rc
88    CONFIG="${MAGERC}"
89    updateconfig RSYNC MIRRORS MAGE_DISTRIBUTION PACKAGES_SERVER_PATH MAGE_UNINSTALL_TIMEOUT
90    
91    # fix config.rc
92    CONFIG="${CONFIGRC}"
93    updateconfig ALX_NETWORKING ALX_DHCP_PROG ALX_DHCP_START ALX_DHCP_STOP MIN_DISK_SPACE ALX_PLUGINS
94    
95  # fix profile  # fix profile
96  if [[ $(readlink /etc/mage-profile) != */${MAGEPROFILE} ]]  if [[ $(readlink /etc/mage-profile) != */${MAGEPROFILE} ]]
# Line 53  then Line 122  then
122    
123   # enable run of orphaned files check   # enable run of orphaned files check
124   touch /.orphaned   touch /.orphaned
125    
126     # tell that we're running an dist-upgrade
127     touch /.dist-upgrade
128    fi
129    
130    # only run this if X11R6 is a directory and not a symlink
131    if [[ -d /usr/X11R6 ]] && [[ ! -L /usr/X11R6 ]]
132    then
133     # check for -f option
134     if [[ -n $(magequery -h | grep -- -f) ]]
135     then
136     # uninstall all /usr/X11R6 packages first
137     for i in $(magequery -f /usr/X11R6 | sed 's:.*/\(.*\)-.*-r.*:\1:')
138     do
139     mage uninstall ${i}
140     done
141     fi
142    
143     # if there are any files after uninstall, simply delete them
144     [ -d /usr/X11R6 ] && rm -rf /usr/X11R6
145  fi  fi
146    
147  # install new toolchain if not exist  # install new toolchain if not exist
# Line 66  then Line 155  then
155    
156   # enable run of orphaned files check   # enable run of orphaned files check
157   touch /.orphaned   touch /.orphaned
158    
159     # tell that we're running an dist-upgrade
160     touch /.dist-upgrade
161  fi  fi
162    
163  # install new basesystem  # install new basesystem
# Line 73  BASESYSTEM="$(< /etc/mage-profile/basesy Line 165  BASESYSTEM="$(< /etc/mage-profile/basesy
165  if [[ -z $(magequery -n ${BASESYSTEM}) ]]  if [[ -z $(magequery -n ${BASESYSTEM}) ]]
166  then  then
167   # first keep some important files   # first keep some important files
168    
169     # fix missing /dev/root device
170     if [[ ! -e /dev/root ]]
171     then
172     rootdev=$(basename $(mount | grep ' / ' | cut -d' ' -f1))
173     [[ ! -e /dev/${rootdev} ]] && ln -snf ${rootdev} /dev/root
174     fi
175    
176   # export bootstrap to not start any services   # export bootstrap to not start any services
177   export MAGE_BOOTSTRAP=true   export MAGE_BOOTSTRAP=true
178   mage install ${BASESYSTEM}   mage install ${BASESYSTEM}
179   unset MAGE_BOOTSTRAP   unset MAGE_BOOTSTRAP
180    
181    # # fix locale
182    # echo "LANG=\"de_DE\"" > /etc/conf.d/locale
183    
184   # enable run of orphaned files check   # enable run of orphaned files check
185   touch /.orphaned   touch /.orphaned
186    
187     # tell that we're running an dist-upgrade
188     touch /.dist-upgrade
189  fi  fi
190    
191  # install remserial, if the plugin was enabled  # install remserial, if the plugin was enabled
# Line 95  fi Line 200  fi
200  # clean mage cache  # clean mage cache
201  mage clean  mage clean
202    
 # # uninstall all other deprecated -alx packages  
 # DEPRECATED="bzip2  
 # gzip  
 # perl  
 # glib1  
 # openssl  
 # popt  
 # libungif  
 # samba  
 # dhcpcd  
 # openssh  
 # wget  
 # cups  
 # ddcxinfo-knoppix  
 # debianutils  
 # grep  
 # inetutils  
 # kbd  
 # less  
 # net-tools  
 # pciutils  
 # procps  
 # psmisc  
 # sed  
 # shadow  
 # sysvinit  
 # tar  
 # which  
 # gtk1+  
 # ttmkfdir  
 # xdialog"  
 #  
 # echo "Searching for deprecated packages ..."  
 # for i in ${DEPRECATED}  
 # do  
 # if [[ ! -z $(magequery -n ${i}-alx) ]]  
 # then  
 # echo "Removing deprecated mage-target '${i}-alx'"  
 # mage uninstall ${i}-alx  
 # fi  
 # done  
   
203  echo "Searching for deprecated packages ..."  echo "Searching for deprecated packages ..."
204  for i in $(magequery -i | grep -- -alx | sed 's:.*/\(.*\)-.*-.*:\1:')  for i in $(magequery -i | grep -- -alx | sed 's:.*/\(.*\)-.*-.*:\1:')
205  do  do
206   # excludes   # excludes
207   case ${i} in   case ${i} in
208     alxconfig-ng) continue ;;
209     alxinstall-ng) continue ;;
210   kernel-alx) continue ;;   kernel-alx) continue ;;
211   kernel26-alx) continue ;;   kernel26-alx) continue ;;
212   kernel-sources-alx) continue ;;   kernel-sources-alx) continue ;;
# Line 159  then Line 224  then
224   rm -f /.orphaned   rm -f /.orphaned
225  fi  fi
226    
227  # force a reboot at this point here  if [[ -f /.dist-upgrade ]]
228  reboot -f  then
229     # array of wireless opts
230     WIRELESS_OPTS=( WIRELESS_BITRATE WIRELESS_CHANNEL WIRELESS_ESSID WIRELESS_FREQUENCY WIRELESS_MODE WIRELESS_NICK WIRELESS_AUTH_MODE WIRELESS_KEY_LENGTH WIRELESS_KEY WIRELESS_KEY_ASCII WIRELESS_WPA_DRIVER )
231    
232     # fixing current dhcp network settings
233     #for i in $(grep -irl NETWORKING=.*dhcp.* /etc/conf.d/net.*)
234     for i in $(grep -irl DHCP_PROG=.*dhcpcd.* /etc/conf.d/net.*)
235     do
236     case ${i} in
237     */net.sample) continue ;;
238     */net.routes) continue ;;
239     esac
240    
241     echo "fixing current dhcp network settings in '${i}'"
242     mv ${i}{,.orig}
243     onboot="$(read_value ${i}.orig ONBOOT)"
244     echo "ONBOOT=\"${onboot}\"" > ${i}
245     echo 'NETWORKING="dhcp"' >> ${i}
246     # check wireless extensions
247     for opt in ${WIRELESS_OPTS[*]}
248     do
249     value="$(read_value ${i}.orig ${opt})"
250     if [[ ! -z ${value} ]]
251     then
252     echo "${opt}=\"${value}\"" >> ${i}
253     fi
254     done
255     rm -f ${i}.orig
256     done
257     # search modules files
258     for i in $(find /etc/modules.d -name net.\*)
259     do
260     install -d /etc/modprobe.d
261     mv ${i} /etc/modprobe.d/${i%.conf}.conf
262     done
263    
264     mount /boot &> /dev/null
265     # install an appropriate uvesafb.conf
266     install -d /etc/modprobe.d || die
267     echo "options uvesafb mode_option=1024x768-32@60 scroll=ywrap" > /etc/modprobe.d/uvesafb.conf || die
268     # create an updated initrd
269     DISKMODS="sd_mod"
270     OLDPATAMODS="amd74xx piix sis5513 via82cxxx"
271     PATAMODS="ata_piix pata_amd pata_mpiix pata_oldpiix pata_sis pata_via"
272     SATAMODS="sata_via sata_sis sata_nv"
273     DRMMODS="i915 mga nouveau r128 radeon savage sis tdfx ttm via"
274     FBMODS="uvesafb"
275     echo "MODULES=\"${FORMAT_FILESYSTEM} ${DISKMODS} ${OLDATAMODS} ${PATAMODS} ${SATAMODS} ${DRMMODS} ${FBMODS}\"" > /etc/conf.d/mkinitrd
276     kernelver=$(readlink /boot/vmlinuz | sed 's:kernel-::')
277     mkinitrd -f /boot/initrd-${kernelver}.img ${kernelver}
278     # update grub bootloader
279     updategrub2
280    fi
281    
282    if [[ -f /.dist-upgrade ]]
283    then
284     echo "preparing a reboot in 60 seconds ..."
285     # reboot via cronjob
286     [[ ! -d /var/spool/cron/crontabs ]] && install -d /var/spool/cron/crontabs
287     # setup a proper cronjob
288     tmp=$(mktemp)
289     echo "* * * * * crontab -r && reboot -f" > ${tmp}
290     crontab ${tmp}
291     [[ -f ${tmp} ]] && rm -f ${tmp}
292     # start cron daemon in background
293     crond -b -S
294    fi
295    
296    exit 0

Legend:
Removed from v.2081  
changed lines
  Added in v.2728