tsm-client: 8.1.24.0 -> 8.1.25.0

Readme: https://www.ibm.com/support/pages/node/597891#Readme_8125
(At the time of this writingn,
most URLs in there lead to a login portal.
This might change with time.)

Yarny0 2f85e967 33d4a53b

Changed files
+5 -5
nixos
modules
programs
services
backup
pkgs
by-name
ts
tsm-client
+1 -1
nixos/modules/programs/tsm-client.nix
···
{
freeformType = attrsOf (either scalarType (listOf scalarType));
# Client system-options file directives are explained here:
-
# https://www.ibm.com/docs/en/storage-protect/8.1.24?topic=commands-processing-options
options.servername = mkOption {
type = servernameType;
default = name;
···
{
freeformType = attrsOf (either scalarType (listOf scalarType));
# Client system-options file directives are explained here:
+
# https://www.ibm.com/docs/en/storage-protect/8.1.25?topic=commands-processing-options
options.servername = mkOption {
type = servernameType;
default = name;
+1 -1
nixos/modules/services/backup/tsm.nix
···
environment.HOME = "/var/lib/tsm-backup";
serviceConfig = {
# for exit status description see
-
# https://www.ibm.com/docs/en/storage-protect/8.1.24?topic=clients-client-return-codes
SuccessExitStatus = "4 8";
# The `-se` option must come after the command.
# The `-optfile` option suppresses a `dsm.opt`-not-found warning.
···
environment.HOME = "/var/lib/tsm-backup";
serviceConfig = {
# for exit status description see
+
# https://www.ibm.com/docs/en/storage-protect/8.1.25?topic=clients-client-return-codes
SuccessExitStatus = "4 8";
# The `-se` option must come after the command.
# The `-optfile` option suppresses a `dsm.opt`-not-found warning.
+3 -3
pkgs/by-name/ts/tsm-client/package.nix
···
# point to this derivations `/dsmi_dir` directory symlink.
# Other environment variables might be necessary,
# depending on local configuration or usage; see:
-
# https://www.ibm.com/docs/en/storage-protect/8.1.24?topic=solaris-set-api-environment-variables
let
···
unwrapped = stdenv.mkDerivation (finalAttrs: {
name = "tsm-client-${finalAttrs.version}-unwrapped";
-
version = "8.1.24.0";
src = fetchurl {
url = mkSrcUrl finalAttrs.version;
-
hash = "sha512-TqTDE2oJK/Wu/MNYUCqxmOE6asAqDLz4GtdcFZuKqvfT8pJUCYKz9yjRPIrM3u2XfLH0wDq+Q8ER4ui680mswA==";
};
inherit meta passthru;
···
# point to this derivations `/dsmi_dir` directory symlink.
# Other environment variables might be necessary,
# depending on local configuration or usage; see:
+
# https://www.ibm.com/docs/en/storage-protect/8.1.25?topic=solaris-set-api-environment-variables
let
···
unwrapped = stdenv.mkDerivation (finalAttrs: {
name = "tsm-client-${finalAttrs.version}-unwrapped";
+
version = "8.1.25.0";
src = fetchurl {
url = mkSrcUrl finalAttrs.version;
+
hash = "sha512-OPNjSMnWJ/8Ogy9O0wG0H4cEbYiOwyCVzkWhpG00v/Vm0LDxLzPteMnMOyH8L1egIDhy7lmQYSzI/EC4WWUDDA==";
};
inherit meta passthru;