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 src="${sharedir}"/doas.conf
dest="${localbase}"/etc/doas.conf dest="${localbase}"/etc/doas.conf
# shellcheck disable=SC2002 # shellcheck disable=SC2002
cat "${src}" | if [ -e "${dest}" ]; then
while read -r line; do cat "${src}" |
if grep -q "${line}" "${dest}"; then while read -r line; do
continue if grep -q "${line}" "${dest}"; then
fi continue
cat "${src}" >> "${dest}" fi
printok "modified ${dest}" cat "${src}" >> "${dest}"
break printok "modified ${dest}"
done 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 ** 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 **** Log when ~sourcezap rm~ completes successfully
Similar to other commands, log when the ~sourcezap rm~ command Similar to other commands, log when the ~sourcezap rm~ command
completes successfully completes successfully