Compare commits

...

2 Commits

Author SHA1 Message Date
59ed7233bd v1.15.3
Some checks failed
CI / Build All Platforms (push) Failing after 3s
Publish to npm / npm-publish (push) Failing after 8s
CI / Type Check & Lint (push) Failing after 25s
CI / Build Test (Current Platform) (push) Successful in 54s
Release / build-and-release (push) Successful in 2m35s
2026-03-16 11:07:00 +00:00
01e3ba16c4 fix(install): refresh systemd service configuration before restarting previously running installations 2026-03-16 11:07:00 +00:00
6 changed files with 13 additions and 5 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 2026-03-16 - 1.15.3 - fix(install)
refresh systemd service configuration before restarting previously running installations
- Re-enable the systemd service during updates so unit file changes are applied before restart
- Add a log message indicating the service configuration is being refreshed
## 2026-03-16 - 1.15.2 - fix(systemd)
set HOME and DENO_DIR for the systemd service environment

View File

@@ -1,6 +1,6 @@
{
"name": "@serve.zone/onebox",
"version": "1.15.2",
"version": "1.15.3",
"exports": "./mod.ts",
"tasks": {
"test": "deno test --allow-all test/",

View File

@@ -250,8 +250,10 @@ echo ""
mkdir -p /var/lib/onebox
mkdir -p /var/www/certbot
# Restart service if it was running before update
# Re-enable and restart service if it was previously running (refreshes unit file)
if [ $SERVICE_WAS_RUNNING -eq 1 ]; then
echo "Refreshing systemd service..."
onebox systemd enable
echo "Restarting Onebox service..."
systemctl restart "$SERVICE_NAME"
echo "Service restarted successfully."

View File

@@ -1,6 +1,6 @@
{
"name": "@serve.zone/onebox",
"version": "1.15.2",
"version": "1.15.3",
"description": "Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers",
"main": "mod.ts",
"type": "module",

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/onebox',
version: '1.15.2',
version: '1.15.3',
description: 'Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers'
}

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/onebox',
version: '1.15.2',
version: '1.15.3',
description: 'Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers'
}