freedombone-image-vmdebootstrap 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #!/bin/sh
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Apply patches to vmdebootstrap. Based on a script from freedom-maker
  12. #
  13. # License
  14. # =======
  15. #
  16. # This program is free software: you can redistribute it and/or modify
  17. # it under the terms of the GNU Affero General Public License as published by
  18. # the Free Software Foundation, either version 3 of the License, or
  19. # (at your option) any later version.
  20. #
  21. # This program is distributed in the hope that it will be useful,
  22. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. # GNU Affero General Public License for more details.
  25. #
  26. # You should have received a copy of the GNU Affero General Public License
  27. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  28. PROJECT_NAME='freedombone'
  29. export TEXTDOMAIN=${PROJECT_NAME}-image-vmdebootstrap
  30. export TEXTDOMAINDIR="/usr/share/locale"
  31. VMDEBOOTSTRAP_REPO="https://github.com/bashrc/vmdebootstrap"
  32. VMDEBOOTSTRAP_BRANCH='bashrc/freedombone'
  33. mkdir -p vendor
  34. if [ -d vendor/vmdebootstrap ] ; then
  35. (cd vendor/vmdebootstrap; git checkout .; git pull)
  36. else
  37. git clone $VMDEBOOTSTRAP_REPO vendor/vmdebootstrap
  38. fi
  39. if [ ! -d /usr/share/distro-info ]; then
  40. sudo mkdir -p /usr/share/distro-info
  41. fi
  42. if [ ! -f /usr/share/distro-info/debian.csv ]; then
  43. sudo mkdir -p /usr/share/distro-info
  44. cat <<EOF > /tmp/debian.csv
  45. version,codename,series,created,release,eol
  46. 1.1,Buzz,buzz,1993-08-16,1996-06-17,1997-06-05
  47. 1.2,Rex,rex,1996-06-17,1996-12-12,1998-06-05
  48. 1.3,Bo,bo,1996-12-12,1997-06-05,1999-03-09
  49. 2.0,Hamm,hamm,1997-06-05,1998-07-24,2000-03-09
  50. 2.1,Slink,slink,1998-07-24,1999-03-09,2000-10-30
  51. 2.2,Potato,potato,1999-03-09,2000-08-15,2003-07-30
  52. 3.0,Woody,woody,2000-08-15,2002-07-19,2006-06-30
  53. 3.1,Sarge,sarge,2002-07-19,2005-06-06,2008-03-30
  54. 4.0,Etch,etch,2005-06-06,2007-04-08,2010-02-15
  55. 5.0,Lenny,lenny,2007-04-08,2009-02-14,2012-02-06
  56. 6.0,Squeeze,squeeze,2009-02-14,2011-02-06,2014-05-31
  57. 7,Wheezy,wheezy,2011-02-06,2013-05-04
  58. 8,Jessie,jessie,2013-05-04,2015-04-25
  59. 9,Stretch,stretch,2015-04-25
  60. 10,Buster,buster,2018-07-01
  61. ,Sid,sid,1993-08-16
  62. ,Experimental,experimental,1993-08-16
  63. EOF
  64. sudo mv /tmp/debian.csv /usr/share/distro-info/
  65. fi
  66. if [ ! -f /usr/share/distro-info/ubuntu.csv ]; then
  67. cat <<EOF > /tmp/ubuntu.csv
  68. version,codename,series,created,release,eol,eol-server
  69. 4.10,Warty Warthog,warty,2004-03-05,2004-10-20,2006-04-30
  70. 5.04,Hoary Hedgehog,hoary,2004-10-20,2005-04-08,2006-10-31
  71. 5.10,Breezy Badger,breezy,2005-04-08,2005-10-12,2007-04-13
  72. 6.06 LTS,Dapper Drake,dapper,2005-10-12,2006-06-01,2009-07-14,2011-06-01
  73. 6.10,Edgy Eft,edgy,2006-06-01,2006-10-26,2008-04-25
  74. 7.04,Feisty Fawn,feisty,2006-10-26,2007-04-19,2008-10-19
  75. 7.10,Gutsy Gibbon,gutsy,2007-04-19,2007-10-18,2009-04-18
  76. 8.04 LTS,Hardy Heron,hardy,2007-10-18,2008-04-24,2011-05-12,2013-05-09
  77. 8.10,Intrepid Ibex,intrepid,2008-04-24,2008-10-30,2010-04-30
  78. 9.04,Jaunty Jackalope,jaunty,2008-10-30,2009-04-23,2010-10-23
  79. 9.10,Karmic Koala,karmic,2009-04-23,2009-10-29,2011-04-29
  80. 10.04 LTS,Lucid Lynx,lucid,2009-10-29,2010-04-29,2013-05-09,2015-04-29
  81. 10.10,Maverick Meerkat,maverick,2010-04-29,2010-10-10,2012-04-10
  82. 11.04,Natty Narwhal,natty,2010-10-10,2011-04-28,2012-10-28
  83. 11.10,Oneiric Ocelot,oneiric,2011-04-28,2011-10-13,2013-05-09
  84. 12.04 LTS,Precise Pangolin,precise,2011-10-13,2012-04-26,2017-04-26
  85. 12.10,Quantal Quetzal,quantal,2012-04-26,2012-10-18,2014-05-16
  86. 13.04,Raring Ringtail,raring,2012-10-18,2013-04-25,2014-01-27
  87. 13.10,Saucy Salamander,saucy,2013-04-25,2013-10-17,2014-07-17
  88. 14.04 LTS,Trusty Tahr,trusty,2013-10-17,2014-04-17,2019-04-17
  89. 14.10,Utopic Unicorn,utopic,2014-04-17,2014-10-23,2015-07-23
  90. 15.04,Vivid Vervet,vivid,2014-10-23,2015-04-23,2016-01-23
  91. 15.10,Wily Werewolf,wily,2015-04-23,2015-10-22,2016-07-22
  92. 16.04 LTS,Xenial Xerus,xenial,2015-10-22,2016-04-21,2021-04-21
  93. 16.10,Yakkety Yak,yakkety,2016-04-21,2016-10-20,2017-07-20
  94. EOF
  95. sudo mv /tmp/ubuntu.csv /usr/share/distro-info/
  96. fi
  97. cd vendor/vmdebootstrap
  98. git checkout $VMDEBOOTSTRAP_BRANCH