From f7e12cdcbb79ef37ef1969623c1bf49ae388b344 Mon Sep 17 00:00:00 2001
From: Philipp Kunz <code@philkunz.com>
Date: Wed, 26 Mar 2025 18:10:49 +0000
Subject: [PATCH] fix(systemd): Adjust logging border in systemd service
 installation output

---
 changelog.md             | 5 +++++
 ts/00_commitinfo_data.ts | 2 +-
 ts/systemd.ts            | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/changelog.md b/changelog.md
index 452d859..5d73090 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,10 @@
 # Changelog
 
+## 2025-03-26 - 2.6.12 - fix(systemd)
+Adjust logging border in systemd service installation output
+
+- Updated the closing border line for consistent output formatting in ts/systemd.ts
+
 ## 2025-03-26 - 2.6.11 - fix(cli, systemd)
 Adjust log formatting for consistent output in CLI and systemd commands
 
diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts
index d236ec9..19f4d1e 100644
--- a/ts/00_commitinfo_data.ts
+++ b/ts/00_commitinfo_data.ts
@@ -3,6 +3,6 @@
  */
 export const commitinfo = {
   name: '@serve.zone/nupst',
-  version: '2.6.11',
+  version: '2.6.12',
   description: 'Node.js UPS Shutdown Tool for SNMP-enabled UPS devices'
 }
diff --git a/ts/systemd.ts b/ts/systemd.ts
index d3cc9f2..25d2170 100644
--- a/ts/systemd.ts
+++ b/ts/systemd.ts
@@ -76,7 +76,7 @@ WantedBy=multi-user.target
       // Enable the service
       execSync('systemctl enable nupst.service');
       console.log('│ Service enabled to start on boot');
-      console.log('└─────────────────────────────────────────────┘');
+      console.log('└────────────────────────────────────────────────┘');
     } catch (error) {
       if (error.message === 'Configuration not found') {
         // Just rethrow the error as the message has already been displayed