/CoreOS/postfix/Sanity/SRV-lookup /CoreOS/postfix/Sanity/basic /CoreOS/postfix/Sanity/bz1057593-When-server-is-un-cleanly-shutdown-postfix-does /CoreOS/postfix/Sanity/bz1888286-logging-to-file /CoreOS/postfix/Sanity/pflogsumm-filter-not-work-with-underscore /CoreOS/postfix/Sanity/postfix-master-pid-file /CoreOS/postfix/Sanity/suppress-openssl-key-generation-output-when-installing /CoreOS/postfix/Sanity/virtual-MAILBOX-separate-domains-non-UNIX-accounts /CoreOS/postfix/Regression/bz251677-example-scripts-missing /CoreOS/postfix/Regression/bz345851-Postfix-MySQL-Support /CoreOS/postfix/Regression/bz502412-Postfix-MySQL-map-support /CoreOS/postfix/Regression/bz574439-config-file-in-usr /CoreOS/postfix/Regression/bz645348-Postfix-init-script-status-not-very-robust /CoreOS/postfix/Regression/postfix-is-limited-to-using-security-protocols /CoreOS/postfix/Regression/bz1905484-backport-TLS-1-3-support-to-postfix-3-3-1 /CoreOS/postfix/Regression/cleanup-crash-when-message-with-whitespaceonly-fullname /CoreOS/postfix/Regression/postfix-doesn-t-support-LDAP-SASL
39 lines
1.4 KiB
Bash
Executable file
39 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# runtest.sh of /CoreOS/postfix/Regression/bz251677-example-scripts-missing
|
|
# Description: Test for BZ#251677 (example scripts missing)
|
|
# Author: Juraj Marko <jmarko@redhat.com>
|
|
#
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# Copyright (c) 2012 Red Hat, Inc. All rights reserved.
|
|
#
|
|
# This copyrighted material is made available to anyone wishing
|
|
# to use, modify, copy, or redistribute it subject to the terms
|
|
# and conditions of the GNU General Public License version 2.
|
|
#
|
|
# This program is distributed in the hope that it will be
|
|
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
# PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public
|
|
# License along with this program; if not, write to the Free
|
|
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
# Boston, MA 02110-1301, USA.
|
|
#
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
# Include Beaker environment
|
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
|
|
PACKAGE="postfix"
|
|
|
|
rlJournalStart
|
|
rlPhaseStartTest
|
|
rlRun "rpm -ql postfix | grep -q examples" 0 "examples found"
|
|
rlPhaseEnd
|
|
rlJournalPrintText
|
|
rlJournalEnd
|