[26285] in Source-Commits
Re: /svn/athena r25485 - trunk/debathena/scripts/installer
daemon@ATHENA.MIT.EDU (Geoffrey Thomas)
Tue May 8 15:45:25 2012
Date: Tue, 8 May 2012 12:45:23 -0700 (PDT)
From: Geoffrey Thomas <geofft@MIT.EDU>
To: Jonathan D Reed <jdreed@MIT.EDU>
cc: source-commits@MIT.EDU
In-Reply-To: <201205080020.q480K9Ne032235@drugstore.mit.edu>
Message-ID: <alpine.DEB.2.00.1205081245200.8835@dr-wily.mit.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
ACK.
--
Geoffrey Thomas
geofft@mit.edu
On Mon, 7 May 2012, Jonathan D Reed wrote:
> Author: jdreed
> Date: 2012-05-07 20:20:08 -0400 (Mon, 07 May 2012)
> New Revision: 25485
>
> Modified:
> trunk/debathena/scripts/installer/install-debathena.beta.sh
> Log:
> EOL older distributions; display a warning for beta ones.
>
> Modified: trunk/debathena/scripts/installer/install-debathena.beta.sh
> ===================================================================
> --- trunk/debathena/scripts/installer/install-debathena.beta.sh 2012-05-07 23:45:56 UTC (rev 25484)
> +++ trunk/debathena/scripts/installer/install-debathena.beta.sh 2012-05-08 00:20:08 UTC (rev 25485)
> @@ -62,9 +62,25 @@
> case $distro in
> squeeze)
> ;;
> - hardy|intrepid|jaunty|karmic|lucid|maverick|natty|oneiric)
> + hardy|lucid|natty|oneiric)
> ubuntu=yes
> ;;
> + precise)
> + ubuntu=yes
> + output "The release you have selected is not fully supported"
> + output "and installing Debathena on it is probably a bad idea."
> + ask "Are you sure you want to proceed? [y/N] " n
> + if [ y != "$answer" ]; then
> + exit 1
> + fi
> + ;;
> + lenny|intrepid|jaunty|karmic|maverick)
> + error "The release you are running is no longer supported."
> + error "Generally, Debathena de-supports releases when they are no longer"
> + error "supported by upstream. If you believe you received this message"
> + error "in error, please contact debathena@mit.edu."
> + exit 1
> + ;;
> *)
> error "Unsupported release codename: $distro"
> error "Sorry, Debathena does not support installation on this release at this time."
>
>