From c0bcdd54498b9a24c64e92edcd9bfc89414dbd1c Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Tue, 17 Jun 2025 00:40:36 +0200 Subject: [PATCH] Make a simple change, bump version to 1.0.1 --- debian/changelog | 9 +++++++++ main.go | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 6ab92c6..3275c0d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +govpp-snmp-agentx (1.0.1-1) bookworm; urgency=medium + + * Add manual page for govpp-snmp-agentx(1) + * Make VPP config file optional - log warning and continue if missing + * Fix Debian package build reproducibility issues + * Improve build system with proper cleanup targets + + -- Pim van Pelt Tue, 17 Jun 2025 00:35:00 +0000 + govpp-snmp-agentx (1.0.0-1) bookworm; urgency=medium * Initial release diff --git a/main.go b/main.go index 512eebb..cac929c 100644 --- a/main.go +++ b/main.go @@ -30,7 +30,8 @@ func main() { // Load VPP config if specified if *vppcfg != "" { if err := interfaceMIB.LoadVPPConfig(*vppcfg); err != nil { - log.Fatalf("Failed to load VPP config: %v", err) + logger.Printf("Warning: Failed to load VPP config from %s: %v", *vppcfg, err) + logger.Printf("Continuing without VPP config file...") } }