mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 14:56:46 +02:00
10 lines
242 B
Bash
10 lines
242 B
Bash
#!/bin/sh
|
|
|
|
[ -e /etc/.git ] && exit 0
|
|
|
|
if etckeeper init; then
|
|
etckeeper commit "initial commit"
|
|
# we are in trigger context so the apk database
|
|
# contains info before the change takes effect
|
|
/etc/etckeeper/pre-install.d/10packagelist
|
|
fi
|