Compare commits
No commits in common. "f860f39e59a29375825f1f9073e9b9f0b129ba6f" and "539547beb82ad21e2ebc27164179d1380eda48a8" have entirely different histories.
f860f39e59
...
539547beb8
@ -1,11 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 2025-03-26 - 2.6.14 - fix(systemd)
|
|
||||||
Shorten closing log divider in systemd service installation output for consistent formatting.
|
|
||||||
|
|
||||||
- Replaced the overly long footer with a shorter one in ts/systemd.ts.
|
|
||||||
- This change improves log readability without affecting functionality.
|
|
||||||
|
|
||||||
## 2025-03-26 - 2.6.13 - fix(cli)
|
## 2025-03-26 - 2.6.13 - fix(cli)
|
||||||
Fix CLI update output box formatting
|
Fix CLI update output box formatting
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@serve.zone/nupst",
|
"name": "@serve.zone/nupst",
|
||||||
"version": "2.6.14",
|
"version": "2.6.13",
|
||||||
"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.14',
|
version: '2.6.13',
|
||||||
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