mirror of
https://github.com/dockersrc/archlinux
synced 2024-11-21 11:23:05 -05:00
🗃️ Committing everything that changed 🗃️
rootfs/root/docker/setup/03-files.sh rootfs/root/docker/setup/04-users.sh
This commit is contained in:
parent
2d5628ed9d
commit
e2e8785ac0
@ -27,6 +27,7 @@ exitCode=0
|
|||||||
|
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# Main script
|
# Main script
|
||||||
|
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# Set the exit code
|
# Set the exit code
|
||||||
exitCode=$?
|
exitCode=$?
|
||||||
|
@ -31,6 +31,7 @@ AUR_HOME="${AUR_HOME:-/var/lib/aur}"
|
|||||||
AUR_BUILD_DIR="${AUR_BUILD_DIR:-${AUR_HOME}/build}"
|
AUR_BUILD_DIR="${AUR_BUILD_DIR:-${AUR_HOME}/build}"
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# Main script
|
# Main script
|
||||||
|
rm -Rf "$AUR_BUILD_DIR/yay"
|
||||||
if ! grep -sq "^$AUR_GROUP:" /etc/group; then
|
if ! grep -sq "^$AUR_GROUP:" /etc/group; then
|
||||||
echo "Creating group: $AUR_GROUP"
|
echo "Creating group: $AUR_GROUP"
|
||||||
groupadd -r -g $AUR_UID $AUR_GROUP
|
groupadd -r -g $AUR_UID $AUR_GROUP
|
||||||
@ -54,7 +55,7 @@ if [ -z "$(command -v yay 2>/dev/null)" ]; then
|
|||||||
[ -n "$(type -P git)" ] && git config --global init.defaultBranch main
|
[ -n "$(type -P git)" ] && git config --global init.defaultBranch main
|
||||||
chmod -Rf 777 "$AUR_BUILD_DIR"
|
chmod -Rf 777 "$AUR_BUILD_DIR"
|
||||||
git clone --depth 1 "https://aur.archlinux.org/yay" "." && sudo -u "$AUR_USER" makepkg --noconfirm -si
|
git clone --depth 1 "https://aur.archlinux.org/yay" "." && sudo -u "$AUR_USER" makepkg --noconfirm -si
|
||||||
sudo -u "${AUR_USER}" yay --afterclean --removemake --save && pacman -Qtdq | xargs -r pacman --noconfirm -Rcns
|
sudo -u "${AUR_USER}" yay --afterclean --removemake --save && pacman -Qtdq | xargs -r pacman --noconfirm -Rcns || exit 1
|
||||||
else
|
else
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user