This repository has been archived on 2024-07-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
etckeeper/pm/sleep.d/10_unattended-upgrades-hibernate
T
caelebfi 99840ddb38 committing changes in /etc made by "apt-get --yes --no-install-recommends install unattended-upgrades"
Packages with configuration changes:
+unattended-upgrades 2.8 all

Package changes:
+python3-dbus 1.2.16-5 armhf
+python3-distro-info 1.0 all
+unattended-upgrades 2.8 all
2022-01-24 09:17:11 +01:00

34 lines
672 B
Bash
Executable File

#!/bin/sh
# Action script ensure that unattended-upgrades is finished
# before a hibernate
#
# Copyright: Copyright (c) 2009 Michael Vogt
# License: GPL-2
#
PATH=/sbin:/usr/sbin:/bin:/usr/bin
SHUTDOWN_HELPER=/usr/share/unattended-upgrades/unattended-upgrade-shutdown
if [ -x /usr/bin/python3 ]; then
PYTHON=python3
else
PYTHON=python
fi
if [ ! -x /usr/share/unattended-upgrades/unattended-upgrade-shutdown ]; then
exit 0
fi
case "${1}" in
hibernate)
if [ -e $SHUTDOWN_HELPER ]; then
$PYTHON $SHUTDOWN_HELPER --stop-only
fi
;;
resume|thaw)
# nothing
;;
esac