| Current Path : /usr/lib/systemd/system-sleep/ |
| Current File : //usr/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