Replace nobody user

This commit is contained in:
Santiago Lo Coco 2022-03-01 13:15:45 -03:00
parent 0bfe96e621
commit 49610aff3f
1 changed files with 5 additions and 5 deletions

View File

@ -2,14 +2,14 @@
setPermissions() { setPermissions() {
useradd calbuilder -m useradd calbuilder -m
echo "nobody ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers echo "calbuilder ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
visudo -c visudo -c
chmod -R a+rw . chmod -R a+rw .
} }
installAurDeps() { installAurDeps() {
aurPkgs=() aurPkgs=()
sudo -u nobody makepkg --printsrcinfo > .SRCINFO sudo -u calbuilder makepkg --printsrcinfo > .SRCINFO
regExp="^[[:space:]]*\(make\)\?depends\(.\)* = \([[:alnum:][:punct:]]*\)[[:space:]]*$" regExp="^[[:space:]]*\(make\)\?depends\(.\)* = \([[:alnum:][:punct:]]*\)[[:space:]]*$"
mapfile -t pkgDeps < <(sed -n -e "s/$regExp/\3/p" .SRCINFO) mapfile -t pkgDeps < <(sed -n -e "s/$regExp/\3/p" .SRCINFO)
for pkgDep in "${pkgDeps[@]}"; do for pkgDep in "${pkgDeps[@]}"; do
@ -24,7 +24,7 @@ installAurDeps() {
if [ "${#aurPkgs[@]}" -gt 0 ]; then if [ "${#aurPkgs[@]}" -gt 0 ]; then
pacman -S --noconfirm --needed git pacman -S --noconfirm --needed git
git clone https://aur.archlinux.org/paru-bin.git git clone https://aur.archlinux.org/paru-bin.git
cd paru-bin; sudo -u nobody makepkg -si --noconfirm; cd .. cd paru-bin; sudo -Hu calbuilder makepkg -si --noconfirm; cd ..
for aurPkg in "${aurPkgs[@]}"; do for aurPkg in "${aurPkgs[@]}"; do
paru -S --noconfirm "$aurPkg" paru -S --noconfirm "$aurPkg"
done done
@ -52,10 +52,10 @@ buildPackage() {
} }
exportPackageFiles() { exportPackageFiles() {
sudo -u nobody makepkg --printsrcinfo > .SRCINFO sudo -u calbuilder makepkg --printsrcinfo > .SRCINFO
exportFile "srcInfo" ".SRCINFO" exportFile "srcInfo" ".SRCINFO"
pkgFile=$(sudo -u nobody makepkg --packagelist) pkgFile=$(sudo -u calbuilder makepkg --packagelist)
if [ -f "$pkgFile" ]; then if [ -f "$pkgFile" ]; then
relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")" relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
exportFile "pkgFile" "$relPkgFile" "$pkgFile" exportFile "pkgFile" "$relPkgFile" "$pkgFile"