* Thu Oct 02 2025 Brian Read <brianr@koozali.org> 11.0.0-3.sme

- Fix typo in event template [SME: 13208]
- Correct check on debug config for showing route [SME: 13208]
This commit is contained in:
2025-10-02 09:10:31 +01:00
parent 4bce7467f6
commit b936943a8f
3 changed files with 10 additions and 6 deletions

View File

@@ -1,8 +1,8 @@
#!/bin/sh
if (systemctl list-unit-files |grep smanager) then
echo "Restarting smanager"
/sbin/e-smith/signal-event manager2-refresh;
/sbin/e-smith/signal-event smanager-refresh;
systemctl restart smanager
else
echo "Smanager not loaded"
echo "smanager not loaded"
fi

View File

@@ -3,7 +3,7 @@
% content_for 'module' => begin
<div id="module" class="module vacation-panel">
% if (config->{debug} == 0) {
% if (config->{debug} == 1) {
<p>
%= dumper $c->current_route
</p>

View File

@@ -4,7 +4,7 @@
%define name smeserver-vacation
%define version 11.0.0
%define release 2
%define release 3
Summary: SME Server enhancement to enable vacation messages for users.
Name: %{name}
Version: %{version}
@@ -30,6 +30,10 @@ Optionally provides a user-manager panel where users can
enable vacation for themselves and to modify their own message
%changelog
* Thu Oct 02 2025 Brian Read <brianr@koozali.org> 11.0.0-3.sme
- Fix typo in event template [SME: 13208]
- Correct check on debug config for showing route [SME: 13208]
* Wed Oct 01 2025 Brian Read <brianr@koozali.org> 11.0.0-2.sme
- Restore missing lex file [SME: 13208]
- Make front end work for user panel as well as admin panel [SME: 13208]