Codebase list atop / debian/2.2.6-4 atop-pm.sh
debian/2.2.6-4

Tree @debian/2.2.6-4 (Download .tar.gz)

atop-pm.sh @debian/2.2.6-4raw · history · blame

#!/bin/bash

case "$1" in
	pre)	/usr/bin/systemctl stop atop
		exit 0
		;;
	post)	/usr/bin/systemctl start atop
		exit 0
		;;
 	*)	exit 1
		;;
esac