Create doas.conf if neccessary
Some checks are pending
sourcezap / shellcheck (push) Waiting to run

This commit is contained in:
0x1eef 2024-09-15 21:01:03 -03:00
parent ddff3f294b
commit f3f84f181a
2 changed files with 23 additions and 9 deletions

View file

@ -17,12 +17,21 @@ sharedir="${localbase}"/share/sourcezap
src="${sharedir}"/doas.conf
dest="${localbase}"/etc/doas.conf
# shellcheck disable=SC2002
cat "${src}" |
while read -r line; do
if grep -q "${line}" "${dest}"; then
continue
fi
cat "${src}" >> "${dest}"
printok "modified ${dest}"
break
done
if [ -e "${dest}" ]; then
cat "${src}" |
while read -r line; do
if grep -q "${line}" "${dest}"; then
continue
fi
cat "${src}" >> "${dest}"
printok "modified ${dest}"
break
done
else
install -m "u=rw,go=" \
-o root \
-g wheel \
"${src}" \
"${localbase}"/etc
printok "installed ${dest}"
fi

View file

@ -2,6 +2,11 @@
** vNEXT
**** Try to install ~doas.conf~ when it does not exist
When ~${PREFIX}/etc/doas.conf~ does not exist the ~setup-doas~
script will try to install ~/usr/local/etc/doas.conf~ with
~root:wheel~ as the owner, and with ~u=rw,go=~ as the filemode
**** Log when ~sourcezap rm~ completes successfully
Similar to other commands, log when the ~sourcezap rm~ command
completes successfully