[PR #43] [MERGED] BETA 3 Bugfix and partially new function #172

Closed
opened 2026-02-27 08:14:44 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/lucascbeyeler/zmbackup/pull/43
Author: @lucascbeyeler
Created: 7/23/2017
Status: Merged
Merged: 7/23/2017
Merged by: @lucascbeyeler

Base: betaHead: dev


📝 Commits (10+)

  • 4457854 Fix - zmbackup account wasn't beeing created
  • 1f5098b Including checks for the version
  • 1b759e7 Fix install.sh - Upgrade only occur when the version was the same
  • a2c5588 Bugfix - Blacklist wasn't being created
  • 8fe13e0 Bugfix - --remove stopped working after editing check.sh
  • f680662 Bugfix - --remove stopped working after editing check.sh
  • 305fd69 Bugfix - --remove stopped working after editing check.sh
  • bf1e185 Bugfix - Blacklist wasn't being created
  • cca7c86 Bugfix - Message was being put in the wrong place
  • caa44d3 Bugfix - Message was being put in the wrong place

📊 Changes

14 files changed (+201 additions, -23 deletions)

View changed files

📝 README.md (+2 -2)
📝 install.sh (+1 -1)
📝 installScript/check.sh (+9 -2)
📝 installScript/depDownload.sh (+1 -1)
📝 installScript/deploy.sh (+29 -15)
📝 installScript/menu.sh (+6 -0)
📝 installScript/vars.sh (+2 -0)
📝 project/config/zmbackup.conf (+7 -0)
📝 project/lib/bash/HelpAction.sh (+2 -0)
project/lib/bash/MigrationAction.sh (+100 -0)
📝 project/lib/bash/MiscAction.sh (+7 -0)
📝 project/lib/bash/ParallelAction.sh (+1 -1)
project/lib/sqlite3/database.sql (+29 -0)
📝 project/zmbackup (+5 -1)

📄 Description

The following fixes are made in Zmbackup BETA 3:

  • LOCK_BACKUP stopped working after the 1.2 upgrade;
  • Install.sh now create the blacklist;
  • Fix messages about remove - now it doesn't inform you that you are trying to do a upgrade;
  • Install.sh now creates the zmbackup account;
  • Parallel can't create will-cite in Zimbra's home - Zmbackup now create it manually;
  • (Ubuntu Server) Uninstall says that the dependencies are installed with success, when shoud say "are removed";

And the following function is still in development:

  • Zmbackup migration from TXT to SQLITE3;

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/lucascbeyeler/zmbackup/pull/43 **Author:** [@lucascbeyeler](https://github.com/lucascbeyeler) **Created:** 7/23/2017 **Status:** ✅ Merged **Merged:** 7/23/2017 **Merged by:** [@lucascbeyeler](https://github.com/lucascbeyeler) **Base:** `beta` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`4457854`](https://github.com/lucascbeyeler/zmbackup/commit/445785436fba77c29739614c581c9f1c94f1a597) Fix - zmbackup account wasn't beeing created - [`1f5098b`](https://github.com/lucascbeyeler/zmbackup/commit/1f5098b844ba5c3c785bb1b4f7eb012ed9780ea8) Including checks for the version - [`1b759e7`](https://github.com/lucascbeyeler/zmbackup/commit/1b759e75097ce88dd008940c7ff4c3813145afa9) Fix install.sh - Upgrade only occur when the version was the same - [`a2c5588`](https://github.com/lucascbeyeler/zmbackup/commit/a2c5588904e3fe10186ef71f7d0b2541de58442f) Bugfix - Blacklist wasn't being created - [`8fe13e0`](https://github.com/lucascbeyeler/zmbackup/commit/8fe13e061800399caef995b39553855767ab992c) Bugfix - --remove stopped working after editing check.sh - [`f680662`](https://github.com/lucascbeyeler/zmbackup/commit/f6806622ea56c336198606677c7fe70296f95d3a) Bugfix - --remove stopped working after editing check.sh - [`305fd69`](https://github.com/lucascbeyeler/zmbackup/commit/305fd690c39e2d32c8889333d0067bfa2cd8a285) Bugfix - --remove stopped working after editing check.sh - [`bf1e185`](https://github.com/lucascbeyeler/zmbackup/commit/bf1e185598078f91934b724db30ba6128a3d4c58) Bugfix - Blacklist wasn't being created - [`cca7c86`](https://github.com/lucascbeyeler/zmbackup/commit/cca7c8612b89e360ac34416598d305acc88cccad) Bugfix - Message was being put in the wrong place - [`caa44d3`](https://github.com/lucascbeyeler/zmbackup/commit/caa44d3db15aa2fdac68c21ad0b3e020b3d9f143) Bugfix - Message was being put in the wrong place ### 📊 Changes **14 files changed** (+201 additions, -23 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+2 -2) 📝 `install.sh` (+1 -1) 📝 `installScript/check.sh` (+9 -2) 📝 `installScript/depDownload.sh` (+1 -1) 📝 `installScript/deploy.sh` (+29 -15) 📝 `installScript/menu.sh` (+6 -0) 📝 `installScript/vars.sh` (+2 -0) 📝 `project/config/zmbackup.conf` (+7 -0) 📝 `project/lib/bash/HelpAction.sh` (+2 -0) ➕ `project/lib/bash/MigrationAction.sh` (+100 -0) 📝 `project/lib/bash/MiscAction.sh` (+7 -0) 📝 `project/lib/bash/ParallelAction.sh` (+1 -1) ➕ `project/lib/sqlite3/database.sql` (+29 -0) 📝 `project/zmbackup` (+5 -1) </details> ### 📄 Description The following fixes are made in Zmbackup BETA 3: - LOCK_BACKUP stopped working after the 1.2 upgrade; - Install.sh now create the blacklist; - Fix messages about remove - now it doesn't inform you that you are trying to do a upgrade; - Install.sh now creates the zmbackup account; - Parallel can't create will-cite in Zimbra's home - Zmbackup now create it manually; - (Ubuntu Server) Uninstall says that the dependencies are installed with success, when shoud say "are removed"; And the following function is still in development: - Zmbackup migration from TXT to SQLITE3; --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 08:14:44 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/zmbackup#172
No description provided.