summaryrefslogtreecommitdiff
path: root/reboot-if-no-net-connection
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2020-10-10 20:26:37 +0200
committerErich Eckner <git@eckner.net>2020-10-10 20:26:37 +0200
commit437fbd4fcc471fd926eda198ff13ac71b2a382da (patch)
treecffcd64664f148368339c808fc96fc905fdd116c /reboot-if-no-net-connection
parent27b3ead4fbd044f8467c20295823a870c263233f (diff)
downloadarchlinuxewe.git.save-437fbd4fcc471fd926eda198ff13ac71b2a382da.tar.xz
reboot-if-no-net-connection new
Diffstat (limited to 'reboot-if-no-net-connection')
-rwxr-xr-xreboot-if-no-net-connection/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/reboot-if-no-net-connection/PKGBUILD b/reboot-if-no-net-connection/PKGBUILD
new file mode 100755
index 00000000..c60cadac
--- /dev/null
+++ b/reboot-if-no-net-connection/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: Erich Eckner <arch at eckner dot net>
+pkgname=reboot-if-no-net-connection
+pkgver=0.0
+pkgrel=1
+pkgdesc="Script to reboot if no net connection was found"
+arch=('any')
+url="https://git.eckner.net/Erich/${pkgname}"
+license=('GPL')
+depends=('iproute2')
+source=(
+ "https://git.eckner.net/Erich/${pkgname}/snapshot/${pkgname}-v${pkgver}.tar.xz"
+)
+sha512sums=('b14b4f60a423dc415a5959380f0d55c4090e6cff1233432152e6460c188f74d8784600fd85de52d3c2df0bdbecff74f58cc0f2af022eebc6e6c8fc4c9de00ba8')
+
+build() {
+
+ cd ${pkgname}-v${pkgver}
+ make
+
+}
+
+package() {
+
+ cd ${pkgname}-v${pkgver}
+ make DESTDIR=${pkgdir} install
+
+}