File tree 6 files changed +24
-6
lines changed
lib/sensu-plugins-postgres
6 files changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -36,18 +36,31 @@ builds:
36
36
- " entity.system.arch == 'amd64'"
37
37
- " entity.system.platform_family == 'rhel'"
38
38
- " entity.system.platform_version.split('.')[0] == '7'"
39
- - platform : " debian "
39
+ - platform : " debian7 "
40
40
arch : " amd64"
41
41
asset_filename : " #{repo}_#{version}_debian_linux_amd64.tar.gz"
42
42
sha_filename : " #{repo}_#{version}_sha512-checksums.txt"
43
43
filter :
44
44
- " entity.system.os == 'linux'"
45
45
- " entity.system.arch == 'amd64'"
46
46
- " entity.system.platform_family == 'debian'"
47
+ - " entity.system.platform_version.split('.')[0] == '7'"
48
+ - platform : " debian8"
49
+ arch : " amd64"
50
+ asset_filename : " #{repo}_#{version}_debian_linux_amd64.tar.gz"
51
+ sha_filename : " #{repo}_#{version}_sha512-checksums.txt"
52
+ filter :
53
+ - " entity.system.os == 'linux'"
54
+ - " entity.system.arch == 'amd64'"
55
+ - " entity.system.platform_family == 'debian'"
56
+ - " entity.system.platform_version.split('.')[0] == '8'"
47
57
- platform : " debian9"
48
58
arch : " amd64"
49
59
asset_filename : " #{repo}_#{version}_debian9_linux_amd64.tar.gz"
50
60
sha_filename : " #{repo}_#{version}_sha512-checksums.txt"
51
61
filter :
52
62
- " entity.system.os == 'linux'"
53
63
- " entity.system.arch == 'amd64'"
64
+ - " entity.system.platform_family == 'debian'"
65
+ - " entity.system.platform_version.split('.')[0] == '9'"
66
+
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
6
6
## [ Unreleased]
7
7
8
+ ## [ 4.0.1] - 2020-04-20
9
+ ### Fixed
10
+ - Fixing asset build directives.
11
+
8
12
## [ 4.0.0] - 2020-01-09
9
13
10
14
### Breaking Changes
@@ -206,7 +210,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
206
210
### Added
207
211
- initial release
208
212
209
- [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.0...HEAD
213
+ [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.1...HEAD
214
+ [ 4.0.1 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.0...4.0.1
210
215
[ 4.0.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/3.0.0...4.0.0
211
216
[ 3.0.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.4.0...3.0.0
212
217
[ 2.4.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.3.2...2.4.0
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ARG RUBY_VERSION=2.4.4
7
7
8
8
WORKDIR /assets/build/
9
9
RUN yum install -y git
10
- RUN yum install -y http ://yum .postgresql.org/9.5/redhat/rhel-7-x86_64/pgdg-redhat95-9.5-3 .noarch.rpm
10
+ RUN yum install -y https ://download .postgresql.org/pub/repos/yum/ 9.5/redhat/rhel-7-x86_64/pgdg-redhat-repo-latest .noarch.rpm
11
11
RUN yum install -y postgresql95 postgresql95-libs postgresql95-devel
12
12
ENV CONFIGURE_ARGS="with-pg-config=/usr/pgsql-9.5/bin/pg_config"
13
13
RUN \
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ARG RUBY_VERSION=2.4.4
7
7
8
8
WORKDIR /assets/build/
9
9
RUN yum install -y git
10
- RUN yum install -y http ://yum .postgresql.org/9.5/redhat/rhel-6-x86_64/pgdg-redhat95-9.5-3 .noarch.rpm
10
+ RUN yum install -y https ://download .postgresql.org/pub/repos/yum/ 9.5/redhat/rhel-6-x86_64/pgdg-redhat-repo-latest .noarch.rpm
11
11
RUN yum install -y postgresql95 postgresql95-libs postgresql95-devel
12
12
ENV CONFIGURE_ARGS="with-pg-config=/usr/pgsql-9.5/bin/pg_config"
13
13
RUN \
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ARG RUBY_VERSION=2.4.4
7
7
8
8
WORKDIR /assets/build/
9
9
RUN yum install -y git
10
- RUN yum install -y http ://yum .postgresql.org/9.5/redhat/rhel-7-x86_64/pgdg-redhat95-9.5-3 .noarch.rpm
10
+ RUN yum install -y https ://download .postgresql.org/pub/repos/yum/ 9.5/redhat/rhel-7-x86_64/pgdg-redhat-repo-latest .noarch.rpm
11
11
RUN yum install -y postgresql95 postgresql95-libs postgresql95-devel
12
12
ENV CONFIGURE_ARGS="with-pg-config=/usr/pgsql-9.5/bin/pg_config"
13
13
RUN \
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module SensuPluginsPostgres
4
4
module Version
5
5
MAJOR = 4
6
6
MINOR = 0
7
- PATCH = 0
7
+ PATCH = 1
8
8
9
9
VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
10
10
end
You can’t perform that action at this time.
0 commit comments