Compare commits

...

6 Commits

Author SHA1 Message Date
48792673dc fix: use absolute path in service file
All checks were successful
Continuous Integration / lint_n_build (push) Successful in 18s
2026-03-15 18:21:11 +01:00
d8b747e315 fix: make install rights
All checks were successful
Continuous Integration / lint_n_build (push) Successful in 20s
Continuous Delivery / build_n_upload (push) Successful in 22s
2026-03-15 16:43:26 +01:00
0c92b1072a doc: improve makefile
All checks were successful
Continuous Integration / lint_n_build (push) Successful in 19s
2026-03-08 22:26:17 +01:00
37d6ea9e4a doc: add make help
All checks were successful
Continuous Integration / lint_n_build (push) Successful in 21s
2026-03-08 21:28:35 +01:00
6ddea566f3 fix: separate systemctl restart and reenable commands
All checks were successful
Continuous Integration / lint_n_build (push) Successful in 21s
Continuous Delivery / build_n_upload (push) Successful in 22s
2026-03-08 16:45:36 +01:00
844e727b7d doc: update readme
All checks were successful
Continuous Integration / lint_n_build (push) Successful in 19s
Continuous Delivery / build_n_upload (push) Successful in 19s
2026-03-08 16:39:06 +01:00
5 changed files with 72 additions and 41 deletions

View File

@@ -17,50 +17,46 @@ RPM_UNITDIR = $(shell rpm --eval '%{_unitdir}')
RPM_TARBALL_PATH = $(RPM_SOURCEDIR)/$(SOURCE0)
RPM_BUILD_PATH = $(RPM_RPMDIR)/$(ARCH)/$(NAME)-$(VERSION)-$(RELEASE).$(ARCH).rpm
.PHONY: help
help:
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: name
name:
name: ## Show project name
@echo "$(NAME)"
.PHONY: version
version:
version: ## Show current project version
@echo "$(VERSION)"
.PHONY: release
release:
release: ## Show current project release
@echo "$(RELEASE)"
.PHONY: arch
arch:
arch: ## Show rpm arch target
@echo "$(ARCH)"
.PHONY: owner
owner:
owner: ## Show project owner name
@echo "$(OWNER)"
.PHONY: summary
summary:
summary: ## Show project summary
@echo "$(SUMMARY)"
.PHONY: license
license:
license: ## Show project license
@echo "$(LICENSE)"
.PHONY: url
url:
url: ## Show project homepage URL
@echo "$(URL)"
.PHONY: source0
source0:
source0: ## Show rpm source0 file name
@echo "$(SOURCE0)"
.PHONY: install
install:
install --directory $(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d $(DESTDIR)$(RPM_SYSCONFDIR)/certbot $(DESTDIR)$(RPM_UNITDIR) $(DESTDIR)$(RPM_SBINDIR)
install --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d files/nginx/0_security.conf files/nginx/z_default.conf
install --mode=600 --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/certbot files/certbot/ovh.ini
install --mode=644 --target-directory=$(DESTDIR)$(RPM_UNITDIR) files/systemd/certbot-renew.service files/systemd/certbot-renew.timer
install --mode=755 --target-directory=$(DESTDIR)$(RPM_SBINDIR) files/sbin/certbot_renew
$(RPM_TARBALL_PATH): *
git archive --format=tar.gz \
--output="$@" \
@@ -69,8 +65,24 @@ $(RPM_TARBALL_PATH): *
HEAD
.PHONY: tarball
tarball: $(RPM_TARBALL_PATH)
tarball: $(RPM_TARBALL_PATH) ## Build rpm tarball
.PHONY: install
install: ## Install files into rpm dest (requires env var DESTDIR)
@if [ -z "$(DESTDIR)" ]; then \
printf "[CRITICAL] Missing env var DESTDIR\n[CRITICAL] This command is designed to be called by rpmbuild only!\n" 1>&2; \
exit 1; \
fi
install --mode=755 --directory $(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d $(DESTDIR)$(RPM_SYSCONFDIR)/certbot $(DESTDIR)$(RPM_UNITDIR) $(DESTDIR)$(RPM_SBINDIR)
install --mode=644 --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d files/nginx/0_security.conf files/nginx/z_default.conf
install --mode=600 --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/certbot files/certbot/ovh.ini
install --mode=644 --target-directory=$(DESTDIR)$(RPM_UNITDIR) files/systemd/certbot-renew.service files/systemd/certbot-renew.timer
install --mode=755 --target-directory=$(DESTDIR)$(RPM_SBINDIR) files/sbin/certbot_renew
.PHONY: upload
upload:
upload: ## Upload rpm package to Gitea repository (requires env var PKG_TOKEN)
@if [ -z "$(PKG_TOKEN)" ]; then \
printf "[CRITICAL] Missing env var PKG_TOKEN\n[CRITICAL] This command is designed to be called by Gitea Actions only!\n" 1>&2; \
exit 1; \
fi
curl --fail-with-body --upload-file "$(RPM_BUILD_PATH)" --user "$(OWNER):$(PKG_TOKEN)" https://git.netoik.io/api/packages/$(OWNER)/rpm/upload

View File

@@ -18,26 +18,26 @@ Build an RPM package which will install several tools.
A `Makefile` is integrated to let you run some basic commands.
- To display some information about the project
- Display some information about the project
```shell
make help
make name
make version
make release
make build_arch
make arch
```
- To build a tarball:
- Build a tarball:
```shell
make tarball
```
- To build a rpm package:
- Build an rpm package:
```shell
rpmbuild -ba netoik-rp.spec
```
- To upload rpm package to Gitea repository
(env vars `GIT_PACKAGES_USERNAME` and `GIT_PACKAGES_TOKEN` needed):
- Upload rpm package to Gitea repository (env var `PKG_TOKEN` is required):
```shell
make upload
```
@@ -48,36 +48,54 @@ A `Makefile` is integrated to let you run some basic commands.
Two workflows are set up.
- Continuous Integration:
- triggered by each push on branch `main`
- runs shellcheck on script `certbot_renew`
- builds tarball and rpm package to test everything is OK
- triggered by each push event on branch `main`
- runs shellcheck
- builds tarball
- builds rpm package
- Continuous Delivery:
- triggered by each tag pushed
- triggered by each tag push event
- builds tarball
- builds and uploads rpm package to `Gitea` repository
- builds rpm package
- uploads rpm package to repository
# Deployment
Some commands to deploy the RPM package on server
- To add Gitea repo to your repo list:
- Add Gitea repo to your repo list:
```shell
dnf config-manager --add-repo https://git.netoik.io/api/packages/samuel/rpm.repo
dnf repolist | grep gitea-samuel
```
- To show available versions:
- Show available versions:
```shell
dnf --showduplicates netoik-rp
```
- To install or upgrade:
- Create certbot ovh credentials here:
[www.ovh.com/auth/api/createToken](https://www.ovh.com/auth/api/createToken)
- Setup environemnt file (fill values):
```shell
dnf --nogpgcheck install netoik-rp
dnf --nogpgcheck upgrade netoik-rp
cat > ~/.netoik-rp.env << EOF
OVH_ENDPOINT=""
OVH_APPLICATION_NAME=""
OVH_APPLICATION_DESCRIPTION=""
OVH_APPLICATION_KEY=""
OVH_APPLICATION_SECRET=""
OVH_CONSUMER_KEY=""
EOF
```
- Install or upgrade package:
```shell
set -a
source ~/.netoik-rp.env
dnf --nogpgcheck --refresh --assumeyes --best install netoik-rp
set +a
```

View File

@@ -1,5 +1,5 @@
# OVH API credentials used by Certbot
# To generate a new token, go to: https://www.ovh.com/auth/api/createToken
# To generate new credentials, go to: https://www.ovh.com/auth/api/createToken
dns_ovh_endpoint = "$OVH_ENDPOINT"
dns_ovh_application_name = "$OVH_APPLICATION_NAME"

View File

@@ -2,4 +2,4 @@
Description=Renew certbot certificates
[Service]
ExecStart=certbot_renew
ExecStart=/usr/sbin/certbot_renew

View File

@@ -50,7 +50,8 @@ fi
# Restart services
systemctl daemon-reload
systemctl reenable --now nginx.service certbot-renew.timer
systemctl reenable nginx.service certbot-renew.timer
systemctl restart nginx.service certbot-renew.timer
%postun
# Remove folders after uninstall