summaryrefslogtreecommitdiff
path: root/fill
blob: a4704e1daebc70b7a28d64f10a1beb864f07ce3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
# Copyright 2016 Luke Shumaker
# This work is free. You can redistribute it and/or modify it under the
# terms of the Do What The Fuck You Want To Public License, Version 2,
# as published by Sam Hocevar. See the COPYING file for more details.

declare -r workdir=/var/lib/pristine-etc
declare -r bindir=/etc/etckeeper/pristine

lock() {
	local fd=$1
	local file=$2
	eval "exec $fd>"'"$file"'
	flock "${@:3}" "$fd"
}

unlock() {
	local fd=$1
	exec {fd}>&-
}

drain() {
	if [[ -d /run/systemd/system ]]; then
		systemctl reset-failed pristine-etc-keeper.service &>/dev/null || true
		systemctl start        pristine-etc-keeper.service
	else
		nohup "${bindir}/drain" <&- &> /dev/null &
	fi
}

main() {
	set -e
	umask 0022

	if [[ $# -gt 0 ]]; then
		lock 8 "${workdir}/spool.lock"
		printf '%s\n' "$*" >> "${workdir}/spool"
		unlock 8
	fi

	drain
}

main "$@"