-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
455 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
DRLM server 2.4.9 | ||
DRLM server 2.4.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
drlm (2.4.10) stable release; urgency=high | ||
* Bugfix in installclient tunnig_rear function | ||
* Bugfix avoid duplicate settings in /etc/drlm/local.conf during update or install process | ||
* Bugfix in user deletion to skip error code 12 | ||
* NEW! XML/JSON error reporting supported | ||
* Bugfix in impbackup client configuration | ||
* Bugfix runbackup umounting previous backups | ||
* Bugfix runbackup rsync hidden warning errors | ||
|
||
-- Pau Roura <[email protected]> Fri, 10 Feb 2023 00:00:00 +0100 | ||
|
||
drlm (2.4.9) stable release; urgency=high | ||
* Bugfix in importbackup Debian nbd detach | ||
* Bugfix getting Client OS version fixed | ||
|
@@ -28,8 +39,6 @@ drlm (2.4.6) stable release; urgency=high | |
|
||
-- Pau Roura <[email protected]> Wed, 21 Sep 2022 00:00:00 +0100 | ||
|
||
-- Pau Roura <[email protected]> Wed, 21 Sep 2022 00:00:00 +0100 | ||
|
||
drlm (2.4.5) stable release; urgency=high | ||
* NEW! Improved jobs list with status feedback | ||
* NEW! Now is possible to enable and disable Jobs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Format: 1.0 | ||
Source: drlm | ||
Version: 2.4.9 | ||
Version: 2.4.10 | ||
Binary: drlm | ||
Maintainer: Pau Roura ([email protected]) | ||
Architecture: all | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -187,7 +187,9 @@ fi | |
/usr/share/drlm/conf/DHCP/config-DHCP.sh install | ||
|
||
### Enable systemd services | ||
echo "NFS_SVC_NAME=\"nfs-server\"" >> /etc/drlm/local.conf | ||
if ! grep -v '^\s*$\|^\s*\#' /etc/drlm/local.conf | grep -q 'NFS_SVC_NAME="nfs-server"'; then | ||
echo "NFS_SVC_NAME=\"nfs-server\"" >> /etc/drlm/local.conf | ||
fi | ||
systemctl enable rpcbind.service | ||
systemctl enable nfs-server.service | ||
systemctl enable dhcpd.service | ||
|
@@ -199,8 +201,8 @@ systemctl is-active --quiet apache2.service && systemctl stop apache2.service | |
systemctl is-enabled --quiet apache2.service && systemctl disable apache2.service | ||
%endif | ||
%if (0%{?centos} || 0%{?fedora} || 0%{?rhel} || 0%{?rocky} ) | ||
systemctl is-active --quiet httpd.service && systemctl stop httpd.service | ||
systemctl is-enabled --quiet httpd.service && systemctl disable httpd.service | ||
systemctl list-units --full -all | grep -Fq httpd.service && systemctl is-active --quiet httpd.service && systemctl stop httpd.service | ||
systemctl list-units --full -all | grep -Fq httpd.service && systemctl is-enabled --quiet httpd.service && systemctl disable httpd.service | ||
%endif | ||
fi | ||
|
||
|
@@ -263,6 +265,7 @@ systemctl daemon-reload | |
%{_sbindir}/drlm-stord | ||
%{_sbindir}/drlm-api | ||
%{_sbindir}/drlm-proxy | ||
%{_sbindir}/drlm-send-error | ||
|
||
%posttrans | ||
### Rcover certificates post transaction | ||
|
@@ -316,6 +319,15 @@ systemctl start drlm-tftpd.service | |
|
||
%changelog | ||
|
||
* Fri Feb 10 2023 Pau Roura <[email protected]> 2.4.10 | ||
- Bugfix in installclient tunnig_rear function | ||
- Bugfix avoid duplicate settings in /etc/drlm/local.conf during update or install process | ||
- Bugfix in user deletion to skip error code 12 | ||
- NEW! XML/JSON error reporting supported | ||
- Bugfix in impbackup client configuration | ||
- Bugfix runbackup umounting previous backups | ||
- Bugfix runbackup rsync hidden warning errors | ||
|
||
* Thu Nov 24 2022 Pau Roura <[email protected]> 2.4.9 | ||
- Bugfix in importbackup Debian nbd detach | ||
- Bugfix getting Client OS version fixed | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.