From 45e0d9bb165f7782c1a170c97b5abae16e668eaf Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Mon, 5 Jan 2026 17:13:43 +1100 Subject: [PATCH] 0.3.0 --- debian/changelog | 10 ++++++++++ pyproject.toml | 2 +- rpm/enroll.spec | 8 +++++++- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 4cd50f7..adcbe0c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +enroll (0.3.0) unstable; urgency=medium + + * Introduce `enroll explain` - a tool to analyze and explain what's in (or not in) a harvest and why. + * Centralise the cron and logrotate stuff into their respective roles, we had a bit of duplication between roles based on harvest discovery. + * Capture other files in the user's home directory such as `.bashrc`, `.bash_aliases`, `.profile`, if these files differ from the `/etc/skel` defaults + * Ignore files that end with a tilde or - (probably backup files generated by editors or shadow file changes) + * Manage certain symlinks e.g for apache2/nginx sites-enabled and so on + + -- Miguel Jacq Mon, 05 Jan 2026 17:00:00 +1100 + enroll (0.2.3) unstable; urgency=medium * Introduce --ask-become-pass or -K to support password-required sudo on remote hosts, just like Ansible. It will also fall back to this prompt if a password is required but the arg wasn't passed in. diff --git a/pyproject.toml b/pyproject.toml index 685fe89..7a6143a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "enroll" -version = "0.2.3" +version = "0.3.0" description = "Enroll a server's running state retrospectively into Ansible" authors = ["Miguel Jacq "] license = "GPL-3.0-or-later" diff --git a/rpm/enroll.spec b/rpm/enroll.spec index c3cadf6..eb55262 100644 --- a/rpm/enroll.spec +++ b/rpm/enroll.spec @@ -1,4 +1,4 @@ -%global upstream_version 0.2.3 +%global upstream_version 0.3.0 Name: enroll Version: %{upstream_version} @@ -43,6 +43,12 @@ Enroll a server's running state retrospectively into Ansible. %{_bindir}/enroll %changelog +* Mon Jan 05 2026 Miguel Jacq - %{version}-%{release} +- Introduce `enroll explain` - a tool to analyze and explain what's in (or not in) a harvest and why. +- Centralise the cron and logrotate stuff into their respective roles, we had a bit of duplication between roles based on harvest discovery. +- Capture other files in the user's home directory such as `.bashrc`, `.bash_aliases`, `.profile`, if these files differ from the `/etc/skel` defaults +- Ignore files that end with a tilde or - (probably backup files generated by editors or shadow file changes) +- Manage certain symlinks e.g for apache2/nginx sites-enabled and so on * Sun Jan 04 2026 Miguel Jacq - %{version}-%{release} - Introduce --ask-become-pass or -K to support password-required sudo on remote hosts, just like Ansible. It will also fall back to this prompt if a password is required but the arg wasn't passed in. * Sat Jan 03 2026 Miguel Jacq - %{version}-%{release}