index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Luke Shumaker <lukeshu@parabola.nu> | 2017-02-15 14:40:06 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@parabola.nu> | 2017-04-20 00:23:50 -0400 |
commit | 0a4b64cef91b26180aaa6fd83d3376b206641a3f (patch) | |
tree | 48ea213dc7d3a0e11fee49f50b89d6c21b22cfe6 /makechrootpkg.in | |
parent | b1f96872be9778fb96c6ec76e567345f26d54658 (diff) |
-rw-r--r-- | makechrootpkg.in | 12 |
diff --git a/makechrootpkg.in b/makechrootpkg.in index 633d617..420f1ce 100644 --- a/makechrootpkg.in +++ b/makechrootpkg.in @@ -223,6 +223,18 @@ builduser ALL = NOPASSWD: /usr/bin/pacman EOF chmod 440 "$copydir/etc/sudoers.d/builduser-pacman" + if ! grep -q '^\[repo\]' "$copydir/etc/pacman.conf"; then + local line=$(grep -n '^\[' "$copydir/etc/pacman.conf" |grep -Fv ':[options]'|sed 's/:.*//;1q') + local ins='[repo] +SigLevel = Optional TrustAll +Server = file:///repo +' + sed -i "${line}i${ins//$'\n'/\\n}" "$copydir/etc/pacman.conf" + fi + # Avoid having to use `pacman -Sy` to update [repo], as + # networking might be disabled inside of the chroot. + cp "$copydir/repo/repo.db" "$copydir/var/lib/pacman/sync/repo.db" + # This is a little gross, but this way the script is recreated every time in the # working copy { |