#!/bin/bash ACTION="$1" case $ACTION in remove) apt-get remove -y classroom-assembly TEST=$( dpkg-query -s classroom-assembly 2> /dev/null| grep Status | cut -d " " -f 4 ) if [ "$TEST" == 'installed' ];then exit 1 fi ;; esac