Package Details: archiso-git 75.r2.g2932a9d-1

Git Clone URL: https://aur.archlinux.org/archiso-git.git (read-only, click to copy)
Package Base: archiso-git
Description: Tools for creating Arch Linux live and install iso images
Upstream URL: https://gitlab.archlinux.org/archlinux/archiso
Keywords: releng
Licenses: GPL-3.0-or-later
Conflicts: archiso
Provides: archiso
Submitter: svenstaro
Maintainer: dvzrv (nl6720)
Last Packager: nl6720
Votes: 121
Popularity: 0.002935
First Submitted: 2009-04-28 03:43 (UTC)
Last Updated: 2024-02-17 09:41 (UTC)

Dependencies (17)

Required by (6)

Sources (1)

Pinned Comments

nl6720 commented on 2020-07-30 17:02 (UTC) (edited on 2020-07-30 17:09 (UTC) by nl6720)

@amoka, that's a temporary issue. It will be solved when archiso 46 is released and lands in extra.

To use mkinitcpio-archiso-git instead of mkinitcpio-archiso:

  1. Setup a custom local repo and add mkinitcpio-archiso-git to it. Alternatively use an AUR helper that uses a custom local repo.
  2. Add the repo to configs/*/pacman.conf. There's an example at the end of the file.
  3. Replace mkinitcpio-archiso with mkinitcpio-archiso-git in configs/*/packages.x86_64.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 .. 10 Next › Last »

nl6720 commented on 2021-04-06 09:09 (UTC)

I was dumb, Bash's associative arrays are not ordered. This will need to be solved differently.

amoka commented on 2021-04-06 02:46 (UTC)

@nl6720 Actually, still having the same issue after changing permissions order to:

file_permissions=(
["/etc/sudoers.d/"]="0:0:440"
["/etc/sudoers.d"]="0:0:750"
)

Both directory and files within ends with 0440 mode!

Sorry for reporting bugs here, can't login to Arch's gitlab.

nl6720 commented on 2021-03-30 06:01 (UTC)

@amoka, the lines are processed in order. What if you change it to:

file_permissions=(
["/etc/sudoers.d/"]="0:0:440"
["/etc/sudoers.d"]="0:0:750"
)

amoka commented on 2021-03-29 19:51 (UTC)

file_permissions=(
["/etc/sudoers.d"]="0:0:750"
["/etc/sudoers.d/"]="0:0:440"
)

I have set this in my profiledef.sh. I want all files under sudoers.d to be 0440 mode (and keep the directory 750). So I listed the directory with trailing backslash ("/") as README.profile.rst says, but it changes the mode for the files and the directory itself to 0440 (not as desired - 750 for directory and 0440 for files within that directory).