Skip to content

Commit a0266ec

Browse files
committed
2.1.7
1 parent d0f86c8 commit a0266ec

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mount_status_monitor"
3-
version = "2.1.6"
3+
version = "2.1.7"
44
authors = [ "Chris Adams <[email protected]>" ]
55
description = "Paranoid filesystem monitor which reports malfunctioning mountpoints"
66
homepage = "https://github.com/acdha/mountstatus"

Dockerfile.release-deb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.50.0
1+
FROM rust:1-buster
22
ARG PACKAGE_VERSION
33
RUN if [ -z "${PACKAGE_VERSION}" ]; then echo "--build-arg PACKAGE_VERSION is required"; exit 1; fi
44

Dockerfile.release-el7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM centos:7
22
ARG PACKAGE_VERSION
33
RUN if [ -z "${PACKAGE_VERSION}" ]; then echo "--build-arg PACKAGE_VERSION is required"; exit 1; fi
44

5-
ENV RUST_ARCHIVE=rust-1.50.0-x86_64-unknown-linux-gnu.tar.gz
5+
ENV RUST_ARCHIVE=rust-1.71.0-x86_64-unknown-linux-gnu.tar.gz
66
ENV RUST_DOWNLOAD_URL=https://static.rust-lang.org/dist/$RUST_ARCHIVE
77

88
RUN yum --quiet -y update && yum --quiet -y install git gcc curl openssl openssl-devel ca-certificates tar gcc make rpm-build libffi-devel && yum clean all --quiet

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ local:
88
cargo generate-lockfile
99

1010
deb: local
11-
docker build -f Dockerfile.release-deb -t mountstatus:release-deb --build-arg PACKAGE_VERSION=${PACKAGE_VERSION} .
12-
docker run --rm -v $(realpath packages):/host-packages-volume mountstatus:release-deb
11+
podman build -f Dockerfile.release-deb -t mountstatus:release-deb --build-arg PACKAGE_VERSION=${PACKAGE_VERSION} .
12+
podman run --rm -v $(realpath packages):/host-packages-volume mountstatus:release-deb
1313

1414
el7: local
15-
docker build -f Dockerfile.release-el7 -t mountstatus:release-el7 --build-arg PACKAGE_VERSION=${PACKAGE_VERSION} .
16-
docker run --rm -v $(realpath packages):/host-packages-volume mountstatus:release-el7
15+
podman build -f Dockerfile.release-el7 -t mountstatus:release-el7 --build-arg PACKAGE_VERSION=${PACKAGE_VERSION} .
16+
podman run --rm -v $(realpath packages):/host-packages-volume mountstatus:release-el7

0 commit comments

Comments
 (0)