blob: 70c868034ff809bc9554cb207b2284e732926264 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Your Name <youremail@domain.com>
pkgname=mkinitcpio-systemd-root-password
pkgver=0.1.0
pkgrel=1
pkgdesc='The root user in the initramfs-image have been locked, without a option to unlock it by setting a password 😢 This mkinitcpio module is made to add the option to unlock the root user in the initramfs-image.'
arch=('any')
url='https://aur.archlinux.org/packages/mkinitcpio-systemd-root-password'
license=('BSD0')
groups=()
depends=('systemd')
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
options=()
source=('systemd-root-password')
noextract=()
sha256sums=('7c99ed88844d2b913894316f1d1c213cd9aaf8f2327dc9cd681c17b500c346c0')
package() {
install -Dm644 "systemd-root-password" "${pkgdir}/usr/lib/initcpio/install/systemd-root-password"
}
|