blob: 7ba78c4dff6811d4b60b01ec66882ebcd468df14 [file] [log] [blame]
Miklos Vajnaf9498442008-04-02 21:35:11 +02001#!/bin/sh
2#
3# An example hook script to verify if you are on battery, in case you
Jonathan del Strotherc33912a2008-09-30 00:36:28 +01004# are running Linux or OS X. Called by git-gc --auto with no arguments.
5# The hook should exit with non-zero status after issuing an appropriate
6# message if it wants to stop the auto repacking.
Miklos Vajnaf9498442008-04-02 21:35:11 +02007#
8# This hook is stored in the contrib/hooks directory. Your distribution
9# may have put this somewhere else. If you want to use this hook, you
10# should make this script executable then link to it in the repository
11# you would like to use it in.
12#
13# For example, if the hook is stored in
14# /usr/share/git-core/contrib/hooks/pre-auto-gc-battery:
15#
Miklos Vajnaf9498442008-04-02 21:35:11 +020016# cd /path/to/your/repository.git
17# ln -sf /usr/share/git-core/contrib/hooks/pre-auto-gc-battery \
18# hooks/pre-auto-gc
19
Adam Borowski781262c2018-02-28 23:12:04 +010020if test -x /sbin/on_ac_power && (/sbin/on_ac_power;test $? -ne 1)
Miklos Vajnaf9498442008-04-02 21:35:11 +020021then
22 exit 0
23elif test "$(cat /sys/class/power_supply/AC/online 2>/dev/null)" = 1
24then
25 exit 0
26elif grep -q 'on-line' /proc/acpi/ac_adapter/AC/state 2>/dev/null
27then
28 exit 0
29elif grep -q '0x01$' /proc/apm 2>/dev/null
30then
31 exit 0
Miklos Vajna84ed4c52008-10-14 16:42:45 +020032elif grep -q "AC Power \+: 1" /proc/pmu/info 2>/dev/null
33then
34 exit 0
Jonathan del Strotherc33912a2008-09-30 00:36:28 +010035elif test -x /usr/bin/pmset && /usr/bin/pmset -g batt |
Panagiotis Astithasc54c7b32015-06-11 17:37:25 +030036 grep -q "drawing from 'AC Power'"
Jonathan del Strotherc33912a2008-09-30 00:36:28 +010037then
38 exit 0
Miklos Vajnaf9498442008-04-02 21:35:11 +020039fi
40
41echo "Auto packing deferred; not on AC"
42exit 1