From 8d140ce60ae05caa0d0c262fc33a4e26540abbc9 Mon Sep 17 00:00:00 2001 From: Jorginho Date: Wed, 9 Sep 2015 20:51:01 +0200 Subject: Change X11/icewm for Mate desktop --- .../root-image/etc/systemd/scripts/choose-mirror | 26 ++++++++++++++++++++++ .../etc/systemd/system/choose-mirror.service | 10 +++++++++ .../etc/systemd/system/etc-pacman.d-gnupg.mount | 8 +++++++ .../system/getty@tty1.service.d/autologin.conf | 3 +++ .../etc/systemd/system/pacman-init.service | 16 +++++++++++++ 5 files changed, 63 insertions(+) create mode 100755 configs/mate/root-image/etc/systemd/scripts/choose-mirror create mode 100644 configs/mate/root-image/etc/systemd/system/choose-mirror.service create mode 100644 configs/mate/root-image/etc/systemd/system/etc-pacman.d-gnupg.mount create mode 100644 configs/mate/root-image/etc/systemd/system/getty@tty1.service.d/autologin.conf create mode 100644 configs/mate/root-image/etc/systemd/system/pacman-init.service (limited to 'configs/mate/root-image/etc/systemd') diff --git a/configs/mate/root-image/etc/systemd/scripts/choose-mirror b/configs/mate/root-image/etc/systemd/scripts/choose-mirror new file mode 100755 index 0000000..13c9f69 --- /dev/null +++ b/configs/mate/root-image/etc/systemd/scripts/choose-mirror @@ -0,0 +1,26 @@ +#!/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/mate/root-image/etc/systemd/system/choose-mirror.service b/configs/mate/root-image/etc/systemd/system/choose-mirror.service new file mode 100644 index 0000000..1e4d771 --- /dev/null +++ b/configs/mate/root-image/etc/systemd/system/choose-mirror.service @@ -0,0 +1,10 @@ +[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/mate/root-image/etc/systemd/system/etc-pacman.d-gnupg.mount b/configs/mate/root-image/etc/systemd/system/etc-pacman.d-gnupg.mount new file mode 100644 index 0000000..4eab551 --- /dev/null +++ b/configs/mate/root-image/etc/systemd/system/etc-pacman.d-gnupg.mount @@ -0,0 +1,8 @@ +[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/mate/root-image/etc/systemd/system/getty@tty1.service.d/autologin.conf b/configs/mate/root-image/etc/systemd/system/getty@tty1.service.d/autologin.conf new file mode 100644 index 0000000..d1d8474 --- /dev/null +++ b/configs/mate/root-image/etc/systemd/system/getty@tty1.service.d/autologin.conf @@ -0,0 +1,3 @@ +[Service] +ExecStart= +ExecStart=-/sbin/agetty --autologin root --noclear %I 38400 linux diff --git a/configs/mate/root-image/etc/systemd/system/pacman-init.service b/configs/mate/root-image/etc/systemd/system/pacman-init.service new file mode 100644 index 0000000..3414ebc --- /dev/null +++ b/configs/mate/root-image/etc/systemd/system/pacman-init.service @@ -0,0 +1,16 @@ +[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 -- cgit v1.2.3-54-g00ecf