summaryrefslogtreecommitdiff
path: root/config-proton-base.PKGBUILD
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-11-11 00:59:00 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-11-11 00:59:00 -0500
commit3601b6b89aa18c52ff7b486f22faf7621fa636ab (patch)
tree916f3c233b1a40c5f07d69a4a9c17b0286daccb3 /config-proton-base.PKGBUILD
parent274200b238895be80bc942afe7d70006c9ab5787 (diff)
refactor
Diffstat (limited to 'config-proton-base.PKGBUILD')
-rw-r--r--config-proton-base.PKGBUILD59
1 files changed, 0 insertions, 59 deletions
diff --git a/config-proton-base.PKGBUILD b/config-proton-base.PKGBUILD
deleted file mode 100644
index 7b3d2c1..0000000
--- a/config-proton-base.PKGBUILD
+++ /dev/null
@@ -1,59 +0,0 @@
-. ${BUILDFILE%/*}/common.sh
-pkgver=20160724
-
-depends=(linux-libre-lts grub haveged netctl)
-conflicts=(linux-libre)
-
-package() {
-cd "$pkgdir"
-
-# ## Base setup
-
-add-file etc/hostname <<EOF
-proton.parabola.nu
-EOF
-
-add-file etc/machine-info <<EOF
-LOCATION="The Positive Internet Company, UK"
-EOF
-
-add-file etc/locale.conf <<EOF
-LANG=en_US.UTF-8
-LC_COLLATE=C
-EOF
-
-add-unit etc/systemd/system/getty.target.wants/getty@tty1.service
-add-unit etc/systemd/system/multi-user.target.wants/haveged.service
-
-ln -s ../usr/lib/os-release etc/os-release
-install -d etc/ssl/certs
-ln -s ../../ca-certificates/extracted/tls-ca-bundle.pem etc/ssl/certs/ca-certificates.crt
-install -d etc/ssl/private
-ln -s ../../letsencrypt/live/$(cat etc/hostname) etc/ssl/private/myhostname
-
-# ## timedate
-
-ln -s ../usr/share/zoneinfo/Europe/London etc/localtime
-
-# Use timesyncd NTP client daemon.
-add-unit etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service
-
-# ## networking
-
-add-file etc/netctl/ethernet-static <<EOF
-Description='Basic static ethernet connection'
-Interface=ens18
-Connection=ethernet
-IP=static
-Address=(80.87.131.232/24)
-Routes=(80.87.131.1)
-Gateway=(80.87.131.1)
-DNS=(80.87.128.200)
-
-IP6=stateless
-EOF
-
-netctl-enable ethernet-static
-
-backup=($(find "$pkgdir" -type f -printf '%P\n'))
-}