Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
189ceeb7e7 | |||
9c6b20fea3 |
10
Makefile
10
Makefile
@@ -17,7 +17,11 @@ RC = \
|
|||||||
data/rc/pacman-init \
|
data/rc/pacman-init \
|
||||||
data/rc/artix-live
|
data/rc/artix-live
|
||||||
|
|
||||||
RUNIT_SV = $(wildcard data/runit/*.sh)
|
RUNIT_CORE = \
|
||||||
|
data/runit/89-artix-live.sh
|
||||||
|
|
||||||
|
RUNIT_SV = \
|
||||||
|
data/runit/pacman-init.run
|
||||||
|
|
||||||
GRUB_DEFAULT = \
|
GRUB_DEFAULT = \
|
||||||
data/grub2-portable-efi
|
data/grub2-portable-efi
|
||||||
@@ -57,7 +61,9 @@ install_rc:
|
|||||||
|
|
||||||
install_runit:
|
install_runit:
|
||||||
install -dm0755 $(DESTDIR)$(SYSCONFDIR)/runit/core-services
|
install -dm0755 $(DESTDIR)$(SYSCONFDIR)/runit/core-services
|
||||||
install -m0755 ${RUNIT_SV} $(DESTDIR)$(SYSCONFDIR)/runit/core-services
|
install -dm0755 $(DESTDIR)$(SYSCONFDIR)/sv/pacman-init
|
||||||
|
install -m0755 ${RUNIT_CORE} $(DESTDIR)$(SYSCONFDIR)/runit/core-services
|
||||||
|
install -m0755 ${RUNIT_SV} $(DESTDIR)$(SYSCONFDIR)/sv/pacman-init/run
|
||||||
|
|
||||||
install_portable_efi:
|
install_portable_efi:
|
||||||
install -dm0755 $(DESTDIR)$(SYSCONFDIR)/default
|
install -dm0755 $(DESTDIR)$(SYSCONFDIR)/default
|
||||||
|
@@ -1,6 +0,0 @@
|
|||||||
msg "Mounting temporary gnupg directory"
|
|
||||||
mount -t tmpfs -o size=10M,mode=0755 tmpfs /etc/pacman.d/gnupg
|
|
||||||
|
|
||||||
msg "Initializing pacman"
|
|
||||||
pacman-key --init
|
|
||||||
pacman-key --populate archlinux-artix
|
|
5
data/runit/pacman-init.run
Normal file
5
data/runit/pacman-init.run
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
mount -t tmpfs -o size=10M,mode=0755 tmpfs /etc/pacman.d/gnupg
|
||||||
|
pacman-key --init
|
||||||
|
pacman-key --populate archlinux artix
|
||||||
|
exec pause pacman-init
|
Reference in New Issue
Block a user