9 lines
267 B
Bash
Executable file
9 lines
267 B
Bash
Executable file
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
# remove cockpit distro packages, testing with upstream master
|
|
# subscription-manager-cockpit needs these, thus --nodeps
|
|
rpm --erase --nodeps --verbose cockpit cockpit-ws cockpit-bridge cockpit-system
|
|
|
|
/var/lib/testvm/fedora.install --rhel "$@"
|