#!/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;
