summaryrefslogtreecommitdiff
path: root/config-parabola-base-openresolv.PKGBUILD
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-09-09 14:06:01 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-09-09 14:06:01 -0400
commitc6ffb08a51ea98f6a94f931cb482c7197989b737 (patch)
tree7b71b541f0ea0d4ab6f3233d93e950c5b2082517 /config-parabola-base-openresolv.PKGBUILD
parente3572e4f5526ce566195fe8e515c10d3576f9561 (diff)
Don't hard-code the interface name on beefcake
Diffstat (limited to 'config-parabola-base-openresolv.PKGBUILD')
-rw-r--r--config-parabola-base-openresolv.PKGBUILD31
1 files changed, 16 insertions, 15 deletions
diff --git a/config-parabola-base-openresolv.PKGBUILD b/config-parabola-base-openresolv.PKGBUILD
index d5e6d71..5cc0997 100644
--- a/config-parabola-base-openresolv.PKGBUILD
+++ b/config-parabola-base-openresolv.PKGBUILD
@@ -1,31 +1,32 @@
. ${BUILDFILE%/*}/common.sh
-pkgver=20180826.2
+pkgver=20180909
package() {
preamble
+pkgdesc="Parabola server configuration: Base openresolv configuration"
-# The [resolvconf][openresolv] program (used by netctl and other
-# network managers) manages the /etc/resolv.conf file. A few programs
-# need to be made aware of this in order to play nice.
+# The [resolvconf][openresolv] program (used by netctl, dhcpcd, and
+# other network managers) manages the /etc/resolv.conf file. A few
+# programs need to be made aware of this in order to play nice.
#
# [openresolv]: https://www.parabola.nu/packages/core/any/openresolv/
depends+=(openresolv)
# Instruct etckeeper to ignore it.
-add-file -m755 etc/etckeeper/update-ignore.d/10resolvconf <<'_EOF_'
-#!/bin/bash
-cat >> .gitignore <<EOF
-/resolv.conf
-/resolv.conf.bak
-EOF
-_EOF_
+add-file -m755 etc/etckeeper/update-ignore.d/10resolvconf <<-'_EOF_'
+ #!/bin/bash
+ cat >> .gitignore <<EOF
+ /resolv.conf
+ /resolv.conf.bak
+ EOF
+ _EOF_
# Instruct pacman to not try to update it.
depends+=('pacman>=5.1.1-1.parabola5')
-add-file etc/pacman.d/resolvconf.conf <<'EOF'
-[options]
-NoExtract = etc/resolv.conf
-EOF
+add-file etc/pacman.d/resolvconf.conf <<-'EOF'
+ [options]
+ NoExtract = etc/resolv.conf
+ EOF
postamble
}