File: client

package info (click to toggle)
openqa 5.1764349525.ffb594867-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,264 kB
  • sloc: perl: 57,599; sql: 26,462; javascript: 8,466; xml: 2,229; sh: 1,705; makefile: 443; python: 249
file content (25 lines) | stat: -rwxr-xr-x 444 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env perl

# Copyright 2014-2020 SUSE LLC
# SPDX-License-Identifier: GPL-2.0-or-later

=head1 NAME

openqa-client - obsolete script for talking to an openQA server

=head1 SYNOPSIS

This script is obsolete, use openqa-cli instead

    openqa-client

=cut

use strict;
use warnings;

print STDERR "NOTICE: openqa-client is obsolete. Use openqa-cli instead\n";

exit 0 if (@ARGV && ($ARGV[0] eq '--help' || $ARGV[0] eq '-h'));

exit 1;