Codebase list atop / lintian-fixes/main atop-pm.sh
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

atop-pm.sh @lintian-fixes/mainraw · history · blame

#!/bin/sh

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