summaryrefslogtreecommitdiff
path: root/configs/talkingparabola/root-image/etc/systemd
diff options
context:
space:
mode:
Diffstat (limited to 'configs/talkingparabola/root-image/etc/systemd')
-rwxr-xr-xconfigs/talkingparabola/root-image/etc/systemd/scripts/choose-mirror26
-rw-r--r--configs/talkingparabola/root-image/etc/systemd/system/choose-mirror.service10
-rw-r--r--configs/talkingparabola/root-image/etc/systemd/system/etc-pacman.d-gnupg.mount8
-rw-r--r--configs/talkingparabola/root-image/etc/systemd/system/getty@tty1.service.d/autologin.conf3
-rw-r--r--configs/talkingparabola/root-image/etc/systemd/system/livecd-alsa-unmuter.service15
-rw-r--r--configs/talkingparabola/root-image/etc/systemd/system/pacman-init.service16
6 files changed, 0 insertions, 78 deletions
diff --git a/configs/talkingparabola/root-image/etc/systemd/scripts/choose-mirror b/configs/talkingparabola/root-image/etc/systemd/scripts/choose-mirror
deleted file mode 100755
index 13c9f69..0000000
--- a/configs/talkingparabola/root-image/etc/systemd/scripts/choose-mirror
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-get_cmdline() {
- local param
- for param in $(< /proc/cmdline); do
- case "${param}" in
- $1=*) echo "${param##*=}";
- return 0
- ;;
- esac
- done
-}
-
-mirror=$(get_cmdline mirror)
-[[ $mirror = auto ]] && mirror=$(get_cmdline parabolaiso_http_srv)
-[[ $mirror ]] || exit 0
-
-mv /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.orig
-cat >/etc/pacman.d/mirrorlist << EOF
-#
-# Parabola GNU/Linux-libre repository mirrorlist
-# Generated by parabolaiso
-#
-
-Server = ${mirror%%/}/\$repo/os/\$arch
-EOF
diff --git a/configs/talkingparabola/root-image/etc/systemd/system/choose-mirror.service b/configs/talkingparabola/root-image/etc/systemd/system/choose-mirror.service
deleted file mode 100644
index 1e4d771..0000000
--- a/configs/talkingparabola/root-image/etc/systemd/system/choose-mirror.service
+++ /dev/null
@@ -1,10 +0,0 @@
-[Unit]
-Description=Choose mirror from the kernel command line
-ConditionKernelCommandLine=mirror
-
-[Service]
-Type=oneshot
-ExecStart=/etc/systemd/scripts/choose-mirror
-
-[Install]
-WantedBy=multi-user.target
diff --git a/configs/talkingparabola/root-image/etc/systemd/system/etc-pacman.d-gnupg.mount b/configs/talkingparabola/root-image/etc/systemd/system/etc-pacman.d-gnupg.mount
deleted file mode 100644
index 4eab551..0000000
--- a/configs/talkingparabola/root-image/etc/systemd/system/etc-pacman.d-gnupg.mount
+++ /dev/null
@@ -1,8 +0,0 @@
-[Unit]
-Description=Temporary /etc/pacman.d/gnupg directory
-
-[Mount]
-What=tmpfs
-Where=/etc/pacman.d/gnupg
-Type=tmpfs
-Options=mode=0755
diff --git a/configs/talkingparabola/root-image/etc/systemd/system/getty@tty1.service.d/autologin.conf b/configs/talkingparabola/root-image/etc/systemd/system/getty@tty1.service.d/autologin.conf
deleted file mode 100644
index d1d8474..0000000
--- a/configs/talkingparabola/root-image/etc/systemd/system/getty@tty1.service.d/autologin.conf
+++ /dev/null
@@ -1,3 +0,0 @@
-[Service]
-ExecStart=
-ExecStart=-/sbin/agetty --autologin root --noclear %I 38400 linux
diff --git a/configs/talkingparabola/root-image/etc/systemd/system/livecd-alsa-unmuter.service b/configs/talkingparabola/root-image/etc/systemd/system/livecd-alsa-unmuter.service
deleted file mode 100644
index e3b9073..0000000
--- a/configs/talkingparabola/root-image/etc/systemd/system/livecd-alsa-unmuter.service
+++ /dev/null
@@ -1,15 +0,0 @@
-[Unit]
-Description=Unmute All Sound Card Controls For Use With The Live TalkingParabola Environment
-# This needs to run after the audio device becomes available.
-Wants=systemd-udev-settle.service
-After=systemd-udev-settle.service sound.target
-DefaultDependencies=no
-Before=shutdown.target
-
-[Service]
-Type=oneshot
-ExecStart=/usr/bin/livecd-alsa-unmuter
-StandardOutput=syslog
-
-[Install]
-WantedBy=sound.target
diff --git a/configs/talkingparabola/root-image/etc/systemd/system/pacman-init.service b/configs/talkingparabola/root-image/etc/systemd/system/pacman-init.service
deleted file mode 100644
index 3414ebc..0000000
--- a/configs/talkingparabola/root-image/etc/systemd/system/pacman-init.service
+++ /dev/null
@@ -1,16 +0,0 @@
-[Unit]
-Description=Initializes Pacman keyring
-Wants=haveged.service
-After=haveged.service
-Requires=etc-pacman.d-gnupg.mount
-After=etc-pacman.d-gnupg.mount
-
-[Service]
-Type=oneshot
-RemainAfterExit=yes
-ExecStart=/usr/bin/pacman-key --init
-ExecStart=/usr/bin/pacman-key --populate archlinux
-ExecStart=/usr/bin/pacman-key --populate parabola
-
-[Install]
-WantedBy=multi-user.target