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