PKGBUILDs/community/docker/docker.install

14 lines
299 B
Plaintext
Raw Normal View History

2015-05-09 15:35:15 +00:00
# Arg 1: the new package version
2013-12-20 14:00:48 +00:00
post_install() {
# create docker group (FS#38029)
2015-05-09 15:35:15 +00:00
systemd-sysusers docker.conf
2013-12-20 14:00:48 +00:00
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
(( $(vercmp $2 '1:0.7.1-1') < 0 )) && post_install "$1" || true
}
# vim:set ts=2 sw=2 et: