diff --git a/.gitignore b/.gitignore index 740f668..98f76ab 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,4 @@ vendor/ build/ dist/ -fail2ban_exporter +prometheus-fail2ban-exporter diff --git a/Dockerfile b/Dockerfile index 9959a07..b2b1971 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apt update --yes && \ make install \ PREFIX=/usr \ DESTDIR=/app \ - EXECUTABLE=fail2ban_exporter + EXECUTABLE=prometheus-fail2ban-exporter FROM docker.io/library/debian:10-slim @@ -16,4 +16,4 @@ COPY --from=build /app / EXPOSE 9191 -ENTRYPOINT [ "/usr/bin/fail2ban_exporter" ] +ENTRYPOINT [ "/usr/bin/prometheus-fail2ban-exporter" ] diff --git a/Makefile b/Makefile index 6b0be1a..43ea15f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ DESTDIR?= PREFIX?=/usr/local -EXECUTABLE?=fail2ban_exporter +EXECUTABLE?=prometheus-fail2ban-exporter CONTAINER_RUNTIME?=$(shell which docker)