aquaballoon

sh - dialog: Radiolist

Nov 30th, 2011
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.80 KB | None | 0 0
  1. #! /bin/bash
  2.  
  3. cp /etc/apt/sources.list  /etc/apt/sources.list.org
  4.  
  5. TMP=/tmp/Ubunt
  6.  
  7. dialog --backtitle "CPU Selection" \
  8.   --radiolist "Select CPU type:" 10 40 3 \
  9.         1 "Ubuntu 9.04" off \
  10.         2 "Ubuntu 10.04" off \
  11.         3 "Ubuntu 11.10" on  2> $TMP
  12.  
  13. Ubuntu=$(cat $TMP)
  14.  
  15. if [ $Ubuntu = 1 ]; then
  16. echo "## Ubuntu 9.04 ONLY!!
  17.  
  18. deb http://old-releases.ubuntu.com/ubuntu/ jaunty main restricted
  19. deb-src http://old-releases.ubuntu.com/ubuntu/ jaunty main restricted
  20. deb http://old-releases.ubuntu.com/ubuntu/ jaunty-updates main restricted
  21. deb-src http://old-releases.ubuntu.com/ubuntu/ jaunty-updates main restricted
  22. deb http://old-releases.ubuntu.com/ubuntu/ jaunty universe
  23. deb-src http://old-releases.ubuntu.com/ubuntu/ jaunty universe
  24. deb http://old-releases.ubuntu.com/ubuntu/ jaunty-updates universe
  25. deb-src http://old-releases.ubuntu.com/ubuntu/ jaunty-updates universe
  26. deb http://old-releases.ubuntu.com/ubuntu/ jaunty multiverse
  27. deb-src http://old-releases.ubuntu.com/ubuntu/ jaunty multiverse
  28. deb http://old-releases.ubuntu.com/ubuntu/ jaunty-updates multiverse
  29. deb-src http://old-releases.ubuntu.com/ubuntu/ jaunty-updates multiverse
  30. deb http://old-releases.ubuntu.com/ubuntu/ jaunty-backports main restricted universe multiverse
  31. deb http://old-releases.ubuntu.com/ubuntu jaunty-security main restricted
  32. deb-src http://old-releases.ubuntu.com/ubuntu jaunty-security main restricted
  33. deb http://old-releases.ubuntu.com/ubuntu jaunty-security universe
  34. deb-src http://old-releases.ubuntu.com/ubuntu jaunty-security universe
  35. deb http://old-releases.ubuntu.com/ubuntu jaunty-security multiverse
  36. deb http://old-releases.ubuntu.com/ubuntu/ jaunty-proposed restricted main multiverse universe
  37. deb-src http://old-releases.ubuntu.com/ubuntu jaunty-security multiverse " > /etc/apt/sources.list
  38.  
  39. dialog --title "/etc/apt/sources.list" --textbox /etc/apt/sources.list 22 70
  40.  
  41. elif [ $Ubuntu = 2 ]; then
  42.  
  43. dialog --title 'Message' --msgbox "Ubuntu 10.04 is not available now! " 5 40
  44.  
  45. elif [ $Ubuntu = 3 ]; then
  46. echo "## Ubuntu 11.10 ONLY!!
  47.  
  48. deb http://archive.ubuntu.com/ubuntu oneiric main restricted
  49. deb-src http://archive.ubuntu.com/ubuntu oneiric main restricted
  50. deb http://archive.ubuntu.com/ubuntu oneiric-updates main restricted
  51. deb-src http://archive.ubuntu.com/ubuntu oneiric-updates main restricted
  52. deb http://archive.ubuntu.com/ubuntu oneiric universe
  53. deb-src http://archive.ubuntu.com/ubuntu oneiric universe
  54. deb http://archive.ubuntu.com/ubuntu oneiric-updates universe
  55. deb-src http://archive.ubuntu.com/ubuntu oneiric-updates universe
  56. deb http://archive.ubuntu.com/ubuntu oneiric multiverse
  57. deb-src http://archive.ubuntu.com/ubuntu oneiric multiverse
  58. deb http://archive.ubuntu.com/ubuntu oneiric-updates multiverse
  59. deb-src http://archive.ubuntu.com/ubuntu oneiric-updates multiverse
  60. deb http://archive.ubuntu.com/ubuntu oneiric-backports main restricted universe multiverse
  61. deb-src http://archive.ubuntu.com/ubuntu oneiric-backports main restricted universe multiverse
  62. deb http://archive.ubuntu.com/ubuntu oneiric-security main restricted
  63. deb-src http://archive.ubuntu.com/ubuntu oneiric-security main restricted
  64. deb http://archive.ubuntu.com/ubuntu oneiric-security universe
  65. deb-src http://archive.ubuntu.com/ubuntu oneiric-security universe
  66. deb http://archive.ubuntu.com/ubuntu oneiric-security multiverse
  67. deb-src http://archive.ubuntu.com/ubuntu oneiric-security multiverse
  68. deb http://archive.canonical.com/ubuntu oneiric partner
  69. deb-src http://archive.canonical.com/ubuntu oneiric partner
  70. deb http://extras.ubuntu.com/ubuntu oneiric main
  71. deb http://archive.ubuntu.com/ubuntu oneiric-proposed restricted main multiverse universe
  72. deb-src http://extras.ubuntu.com/ubuntu oneiric main" > /etc/apt/sources.list
  73.  
  74. dialog --title "/etc/apt/sources.list" --textbox /etc/apt/sources.list 22 70
  75.  
  76. fi
  77.  
  78. rm $TMP
Advertisement
Add Comment
Please, Sign In to add comment