summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-07-13 04:48:40 +0000
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-07-13 04:48:40 +0000
commit2c363690324401c2edd40013f432113ae0d8354e (patch)
treebf5b6a04ee7ed1055c97865172f568c69082f399
parent4bdc495c87bb60e1332e1d2bc3b8b1f5bfd76315 (diff)
only back up regular files
-rw-r--r--config-etckeeper.PKGBUILD4
-rw-r--r--config-pacman-mirrorlist-repo.PKGBUILD4
-rw-r--r--config-pacman-mirrorlist-repomirror.PKGBUILD4
-rw-r--r--config-timedate-utc.PKGBUILD4
-rw-r--r--config-users-base.PKGBUILD4
-rw-r--r--config-winston-base.PKGBUILD4
6 files changed, 12 insertions, 12 deletions
diff --git a/config-etckeeper.PKGBUILD b/config-etckeeper.PKGBUILD
index b5a9ef0..75f0af1 100644
--- a/config-etckeeper.PKGBUILD
+++ b/config-etckeeper.PKGBUILD
@@ -1,5 +1,5 @@
. ${BUILDFILE%/*}/common.sh
-pkgver=20160713.7
+pkgver=20160713.8
depends=(etckeeper pristine-etc-keeper)
@@ -73,5 +73,5 @@ add-file etc/pacman.d/.gitignore <<EOF
/gnupg/
EOF
-backup=($(find "$pkgdir" -printf '%P\n'))
+backup=($(find "$pkgdir" -type f -printf '%P\n'))
}
diff --git a/config-pacman-mirrorlist-repo.PKGBUILD b/config-pacman-mirrorlist-repo.PKGBUILD
index 97e13a2..49354f0 100644
--- a/config-pacman-mirrorlist-repo.PKGBUILD
+++ b/config-pacman-mirrorlist-repo.PKGBUILD
@@ -1,5 +1,5 @@
. ${BUILDFILE%/*}/common.sh
-pkgver=20160713.2
+pkgver=20160713.3
provides=(pacman-mirrorlist)
conflicts=(pacman-mirrorlist)
@@ -11,5 +11,5 @@ add-file etc/pacman.d/mirrorlist <<EOF
Server = https://repo.parabola.nu/\$repo/os/\$arch
EOF
-backup=($(find "$pkgdir" -printf '%P\n'))
+backup=($(find "$pkgdir" -type f -printf '%P\n'))
}
diff --git a/config-pacman-mirrorlist-repomirror.PKGBUILD b/config-pacman-mirrorlist-repomirror.PKGBUILD
index 0abbf9b..fa658bd 100644
--- a/config-pacman-mirrorlist-repomirror.PKGBUILD
+++ b/config-pacman-mirrorlist-repomirror.PKGBUILD
@@ -1,5 +1,5 @@
. ${BUILDFILE%/*}/common.sh
-pkgver=20160713.2
+pkgver=20160713.3
provides=(pacman-mirrorlist)
conflicts=(pacman-mirrorlist)
@@ -11,5 +11,5 @@ add-file etc/pacman.d/mirrorlist <<EOF
Server = https://repomirror.parabola.nu/\$repo/os/\$arch
EOF
-backup=($(find "$pkgdir" -printf '%P\n'))
+backup=($(find "$pkgdir" -type f -printf '%P\n'))
}
diff --git a/config-timedate-utc.PKGBUILD b/config-timedate-utc.PKGBUILD
index a4658f1..628e33d 100644
--- a/config-timedate-utc.PKGBUILD
+++ b/config-timedate-utc.PKGBUILD
@@ -1,5 +1,5 @@
. ${BUILDFILE%/*}/common.sh
-pkgver=20160713.3
+pkgver=20160713.4
package() {
cd "$pkgdir"
@@ -12,5 +12,5 @@ ln -s ../usr/share/zoneinfo/UTC etc/localtime
# Use timesyncd NTP client daemon.
add-unit etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service
-backup=($(find "$pkgdir" -printf '%P\n'))
+backup=($(find "$pkgdir" -type f -printf '%P\n'))
}
diff --git a/config-users-base.PKGBUILD b/config-users-base.PKGBUILD
index c7c07c0..1e64139 100644
--- a/config-users-base.PKGBUILD
+++ b/config-users-base.PKGBUILD
@@ -1,5 +1,5 @@
. ${BUILDFILE%/*}/common.sh
-pkgver=20160713.2
+pkgver=20160713.3
package() {
cd "$pkgdir"
@@ -16,5 +16,5 @@ ExecStart=/bin/bash -c '/usr/bin/pwck -r && /usr/bin/pwck -s'
ExecStart=/bin/bash -c '/usr/bin/grpck -r && /usr/bin/grpck -s'
EOF
-backup=($(find "$pkgdir" -printf '%P\n'))
+backup=($(find "$pkgdir" -type f -printf '%P\n'))
}
diff --git a/config-winston-base.PKGBUILD b/config-winston-base.PKGBUILD
index fa4b054..e7ac9b8 100644
--- a/config-winston-base.PKGBUILD
+++ b/config-winston-base.PKGBUILD
@@ -1,5 +1,5 @@
. ${BUILDFILE%/*}/common.sh
-pkgver=20160713.5
+pkgver=20160713.6
depends=(linux-libre-lts grub haveged irqbalance netctl)
conflicts=(linux-libre)
@@ -59,5 +59,5 @@ EOF
netctl-enable eth0-static
-backup=($(find "$pkgdir" -printf '%P\n'))
+backup=($(find "$pkgdir" -type f -printf '%P\n'))
}