This commit is contained in:
Santiago Lo Coco 2022-03-01 13:16:54 -03:00
parent 49610aff3f
commit 1adb3e109a
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
setPermissions() {
addUser() {
useradd calbuilder -m
echo "calbuilder ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
visudo -c
@ -102,10 +102,10 @@ getInputs() {
runScript() {
set -euo pipefail
pacman -Syu --noconfirm base-devel
pacman -Syu --needed --noconfirm base-devel
getInputs
setPermissions
addUser
baseDir="$PWD"
if [ -n "$pkgDir" ] && [ "$pkgDir" != "." ]; then