tart-guest-agent/packaging/preremove.sh

15 lines
488 B
Bash

#!/bin/bash
# Set shell options to enable fail-fast behavior
#
# * -e: fail the script when an error occurs or command fails
# * -u: fail the script when attempting to reference unset parameters
# * -o pipefail: by default an exit status of a pipeline is that of its
# last command, this fails the pipe early if an error in
# any of its commands occurs
#
set -euo pipefail
systemctl stop tart-guest-agent.service
systemctl disable tart-guest-agent.service