Your IP : 104.23.243.222


Current Path : /lib/systemd/system-sleep/
Upload File :
Current File : //lib/systemd/system-sleep/atop-pm

#!/bin/bash

PATH=/sbin:/usr/sbin:/bin:/usr/bin

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