diff options
| author | Alee <alee14498@gmail.com> | 2018-02-16 20:34:12 -0500 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-02-16 20:34:12 -0500 |
| commit | 0de20832b0a2919f799d14c6cad5579afe132bf3 (patch) | |
| tree | b2fc5eb6bbb5ffc604bcdae20cfa263346b72b5c /live/airootfs/etc/systemd/system | |
| parent | e8d6a6cd916351b86070254d739e4932841aed35 (diff) | |
| download | Project-Caelus-0de20832b0a2919f799d14c6cad5579afe132bf3.tar.gz Project-Caelus-0de20832b0a2919f799d14c6cad5579afe132bf3.tar.bz2 Project-Caelus-0de20832b0a2919f799d14c6cad5579afe132bf3.zip | |
Moved files
Diffstat (limited to 'live/airootfs/etc/systemd/system')
4 files changed, 36 insertions, 0 deletions
diff --git a/live/airootfs/etc/systemd/system/choose-mirror.service b/live/airootfs/etc/systemd/system/choose-mirror.service new file mode 100644 index 0000000..1e4d771 --- /dev/null +++ b/live/airootfs/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/live/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount b/live/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount new file mode 100644 index 0000000..4eab551 --- /dev/null +++ b/live/airootfs/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/live/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf b/live/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf new file mode 100644 index 0000000..d1d8474 --- /dev/null +++ b/live/airootfs/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/live/airootfs/etc/systemd/system/pacman-init.service b/live/airootfs/etc/systemd/system/pacman-init.service new file mode 100644 index 0000000..23b8144 --- /dev/null +++ b/live/airootfs/etc/systemd/system/pacman-init.service @@ -0,0 +1,15 @@ +[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 + +[Install] +WantedBy=multi-user.target |
