Compare commits
2 Commits
002498b91b
...
4af9af0845
Author | SHA1 | Date | |
---|---|---|---|
4af9af0845 | |||
f7e12cdcbb |
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# 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)
|
## 2025-03-26 - 2.6.11 - fix(cli, systemd)
|
||||||
Adjust log formatting for consistent output in CLI and systemd commands
|
Adjust log formatting for consistent output in CLI and systemd commands
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@serve.zone/nupst",
|
"name": "@serve.zone/nupst",
|
||||||
"version": "2.6.11",
|
"version": "2.6.12",
|
||||||
"description": "Node.js UPS Shutdown Tool for SNMP-enabled UPS devices",
|
"description": "Node.js UPS Shutdown Tool for SNMP-enabled UPS devices",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/nupst',
|
name: '@serve.zone/nupst',
|
||||||
version: '2.6.11',
|
version: '2.6.12',
|
||||||
description: 'Node.js UPS Shutdown Tool for SNMP-enabled UPS devices'
|
description: 'Node.js UPS Shutdown Tool for SNMP-enabled UPS devices'
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,7 @@ WantedBy=multi-user.target
|
|||||||
// Enable the service
|
// Enable the service
|
||||||
execSync('systemctl enable nupst.service');
|
execSync('systemctl enable nupst.service');
|
||||||
console.log('│ Service enabled to start on boot');
|
console.log('│ Service enabled to start on boot');
|
||||||
console.log('└─────────────────────────────────────────────┘');
|
console.log('└────────────────────────────────────────────────┘');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (error.message === 'Configuration not found') {
|
if (error.message === 'Configuration not found') {
|
||||||
// Just rethrow the error as the message has already been displayed
|
// Just rethrow the error as the message has already been displayed
|
||||||
|
Loading…
x
Reference in New Issue
Block a user