Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit c615212

Browse files
committed
Update from jessie to stretch
1 parent a5938c8 commit c615212

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

5.5/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# vim:set ft=dockerfile:
2-
FROM debian:jessie
2+
FROM debian:stretch
33

44
# add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added
55
RUN groupadd -r mysql && useradd -r -g mysql mysql
@@ -78,9 +78,9 @@ RUN set -ex; \
7878

7979
RUN echo 'deb https://repo.percona.com/apt jessie main' > /etc/apt/sources.list.d/percona.list
8080

81-
# bashbrew-architectures: amd64 i386
81+
# bashbrew-architectures: amd64
8282
ENV PERCONA_MAJOR 5.5
83-
ENV PERCONA_VERSION 5.5.60-rel38.12-1.jessie
83+
ENV PERCONA_VERSION 5.5.60-rel38.12-1.stretch
8484

8585
# the "/var/lib/mysql" stuff here is because the mysql-server postinst doesn't have an explicit way to disable the mysql_install_db codepath besides having a database already "configured" (ie, stuff in /var/lib/mysql/mysql)
8686
# also, we set debconf keys to make APT a little quieter

5.6/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# vim:set ft=dockerfile:
2-
FROM debian:jessie
2+
FROM debian:stretch
33

44
# add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added
55
RUN groupadd -r mysql && useradd -r -g mysql mysql
@@ -78,9 +78,9 @@ RUN set -ex; \
7878

7979
RUN echo 'deb https://repo.percona.com/apt jessie main' > /etc/apt/sources.list.d/percona.list
8080

81-
# bashbrew-architectures: amd64 i386
81+
# bashbrew-architectures: amd64
8282
ENV PERCONA_MAJOR 5.6
83-
ENV PERCONA_VERSION 5.6.40-84.0-1.jessie
83+
ENV PERCONA_VERSION 5.6.40-84.0-1.stretch
8484

8585
# the "/var/lib/mysql" stuff here is because the mysql-server postinst doesn't have an explicit way to disable the mysql_install_db codepath besides having a database already "configured" (ie, stuff in /var/lib/mysql/mysql)
8686
# also, we set debconf keys to make APT a little quieter

5.7/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# vim:set ft=dockerfile:
2-
FROM debian:jessie
2+
FROM debian:stretch
33

44
# add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added
55
RUN groupadd -r mysql && useradd -r -g mysql mysql
@@ -78,9 +78,9 @@ RUN set -ex; \
7878

7979
RUN echo 'deb https://repo.percona.com/apt jessie main' > /etc/apt/sources.list.d/percona.list
8080

81-
# bashbrew-architectures: amd64 i386
81+
# bashbrew-architectures: amd64
8282
ENV PERCONA_MAJOR 5.7
83-
ENV PERCONA_VERSION 5.7.22-22-1.jessie
83+
ENV PERCONA_VERSION 5.7.22-22-1.stretch
8484

8585
# the "/var/lib/mysql" stuff here is because the mysql-server postinst doesn't have an explicit way to disable the mysql_install_db codepath besides having a database already "configured" (ie, stuff in /var/lib/mysql/mysql)
8686
# also, we set debconf keys to make APT a little quieter

update.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22
set -eo pipefail
33

4-
defaultSuite='jessie'
4+
defaultSuite='stretch'
55
declare -A suites=(
6-
# [5.7]='stretch'
6+
#[5.5]='jessie'
77
)
88
declare -A dpkgArchToBashbrew=(
99
[amd64]='amd64'

0 commit comments

Comments
 (0)