From 4f5a06721122e4a2d28fb4155cf933363b8dc020 Mon Sep 17 00:00:00 2001 From: Malena Casas Date: Tue, 19 Nov 2024 14:12:27 -0300 Subject: [PATCH] Add more logs for testing --- distribution/packages/src/deb/debian/postinst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/distribution/packages/src/deb/debian/postinst b/distribution/packages/src/deb/debian/postinst index af3384862eabf..587bedf6391f3 100644 --- a/distribution/packages/src/deb/debian/postinst +++ b/distribution/packages/src/deb/debian/postinst @@ -41,13 +41,14 @@ fi if command -v systemctl > /dev/null; then systemctl restart systemd-sysctl.service || true elif command -v sysctl > /dev/null; then - # Load configurations from /etc/sysctl.conf + echo "Load configurations from /etc/sysctl.conf" sysctl -p fi if command -v systemd-tmpfiles > /dev/null; then systemd-tmpfiles --create wazuh-indexer.conf else + echo "touch wazuh-indexer.conf" touch wazuh-indexer.conf fi