diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 02:41:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 02:41:06 +0000 |
commit | cfa363aeeda6881266b5da46afd478a255ce996e (patch) | |
tree | f4a77457d4c8183d324dfd239e4889b975c3718c /tests/server | |
parent | Initial commit. (diff) | |
download | tasksel-cfa363aeeda6881266b5da46afd478a255ce996e.tar.xz tasksel-cfa363aeeda6881266b5da46afd478a255ce996e.zip |
Adding upstream version 3.53.upstream/3.53upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/server')
-rwxr-xr-x | tests/server | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/server b/tests/server new file mode 100755 index 0000000..3aeff7c --- /dev/null +++ b/tests/server @@ -0,0 +1,16 @@ +#!/bin/sh + +if ! [ "$NEW_INSTALL" ]; then + exit 3 +fi + +/usr/lib/tasksel/tests/desktop +ret=$? +case $ret in + 0|2) # is desktop + exit 3 # not server + ;; + *) + exit 2 # likely is server + ;; +esac |