20 lines
568 B
Bash
20 lines
568 B
Bash
#!/bin/sh
|
|
#===============================================================================
|
|
#
|
|
# standby
|
|
#
|
|
# Copyright (C) 2019 by Digi International Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License version 2 as published by
|
|
# the Free Software Foundation.
|
|
#
|
|
#
|
|
# !Description: suspend system to RAM
|
|
#
|
|
#===============================================================================
|
|
|
|
# Go to suspend using systemd's default suspend method
|
|
systemctl suspend
|