lixbackups:tip

Last commit made on 2024-06-06
Get this branch:
git clone -b tip https://git.launchpad.net/lixbackups
Only Mark Grant can upload to this branch. If you are Mark Grant please log in for upload directions.

Branch merges

Branch information

Name:
tip
Repository:
lp:lixbackups

Recent commits

2266b14... by Mark Grant

v1.4.3

Signed-off-by: Mark Grant <email address hidden>

51283d7... by Mark Grant

at: Update ChangeLog and NEWS for new release

Signed-off-by: Mark Grant <email address hidden>

5f3f1e2... by Mark Grant

v1.4.3-rc1

Signed-off-by: Mark Grant <email address hidden>

971a137... by Mark Grant

bash: netbckup: Silence unnecessary shellcheck ls warning

The warning from shellcheck:-
SC2012 (info): Use find instead of ls to better handle non-alphanumeric filenames.
 is a false positive. The output is meant for humans, so ls is
fine, indeed wanted, no need to use find. So silence the warning.

Link: https://www.shellcheck.net/wiki/SC2012
Signed-off-by: Mark Grant <email address hidden>

aec5760... by Mark Grant

bash: Array recipient not required reading file

We are only expecting one item per line in the file, so we do not have
to read into an array.

Signed-off-by: Mark Grant <email address hidden>

62549eb... by Mark Grant

bash: netbckup: Remove unquoting quotes

Found by shellcheck:-
SC2027 (warning): The surrounding quotes actually unquote this. Remove or escape them.

Link: https://www.shellcheck.net/wiki/SC2027
Signed-off-by: Mark Grant <email address hidden>

4c7ebf2... by Mark Grant

bash: netbckup: Declare and assign separately

Found by shellcheck:-
SC2155 (warning): Declare and assign separately to avoid masking return values.

Link: https://www.shellcheck.net/wiki/SC2155
Signed-off-by: Mark Grant <email address hidden>

22c4738... by Mark Grant

bash: netbckup: Suppress unreachable trap code warning

The shellcheck warning:-
SC2317 (info): Command appears to be unreachable. Check usage (or ignore if invoked indirectly).
 is a false positive as trap functions have no direct callers. So
suppress the warning.

Link: https://www.shellcheck.net/wiki/SC2317
Signed-off-by: Mark Grant <email address hidden>

bdabd72... by Mark Grant

bash: netbckup: Double quote to prevent globbing and word splitting

Found by shellcheck:-
SC2086 (info): Double quote to prevent globbing and word splitting.

Link: https://www.shellcheck.net/wiki/SC2086
Signed-off-by: Mark Grant <email address hidden>

dfcd4d5... by Mark Grant

bash: detbckshare: Declare and assign separately

Found by shellcheck:-
SC2155 (warning): Declare and assign separately to avoid masking return values.

Link: https://www.shellcheck.net/wiki/SC2155
Signed-off-by: Mark Grant <email address hidden>