Compare commits
3 commits
782d7c8eca
...
16ca9b6c68
Author | SHA1 | Date | |
---|---|---|---|
16ca9b6c68 | |||
b8bef1f953 | |||
c6e83bea5e |
10 changed files with 18 additions and 16 deletions
2
Makefile
2
Makefile
|
@ -17,4 +17,4 @@ deinstall:
|
|||
rm -rf $(SHAREDIR)
|
||||
|
||||
shellcheck:
|
||||
find bin/ libexec/ -type f -exec shellcheck "{}" \;
|
||||
find bin/ libexec/ -type f -exec shellcheck -x "{}" \;
|
||||
|
|
|
@ -8,6 +8,7 @@ libexec="${localbase}"/libexec/sourcezap
|
|||
|
||||
##
|
||||
# functions
|
||||
# shellcheck source=/dev/null
|
||||
. "${libexec}"/functions/print.sh
|
||||
|
||||
##
|
||||
|
|
|
@ -13,6 +13,7 @@ revision="${installdir}"/.sourcezap
|
|||
|
||||
##
|
||||
# functions
|
||||
# shellcheck source=/dev/null
|
||||
. "${libexec}"/functions/print.sh
|
||||
|
||||
require_dependency()
|
||||
|
|
|
@ -11,6 +11,7 @@ branch=$2
|
|||
|
||||
##
|
||||
# functions
|
||||
# shellcheck source=/dev/null
|
||||
. "${libexec}"/functions/print.sh
|
||||
|
||||
##
|
||||
|
|
|
@ -12,6 +12,7 @@ branch=$3
|
|||
|
||||
##
|
||||
# functions
|
||||
# shellcheck source=/dev/null
|
||||
. "${libexec}"/functions/print.sh
|
||||
|
||||
##
|
||||
|
@ -34,5 +35,5 @@ fi
|
|||
"${git}" clone "${giturl}" "${gitdir}"
|
||||
cd "${gitdir}"
|
||||
"${git}" config core.filemode off
|
||||
"${git}" checkout -t origin/"${branch}" || true
|
||||
"${git}" checkout -t origin/"${branch}" > /dev/null 2>&1 || true
|
||||
printok "clone complete"
|
||||
|
|
|
@ -13,6 +13,7 @@ revfile=$3
|
|||
|
||||
##
|
||||
# functions
|
||||
# shellcheck source=/dev/null
|
||||
. "${libexec}"/functions/print.sh
|
||||
|
||||
perform_update()
|
||||
|
|
|
@ -10,6 +10,7 @@ gitdir=$1
|
|||
|
||||
##
|
||||
# functions
|
||||
# shellcheck source=/dev/null
|
||||
. "${libexec}"/functions/print.sh
|
||||
|
||||
##
|
||||
|
|
|
@ -10,6 +10,7 @@ installdir=$2
|
|||
|
||||
##
|
||||
# functions
|
||||
# shellcheck source=/dev/null
|
||||
. "${libexec}"/functions/print.sh
|
||||
|
||||
erase()
|
||||
|
|
|
@ -11,18 +11,13 @@ sharedir="${localbase}"/share/sourcezap
|
|||
# functions
|
||||
. "${libexec}"/functions/print.sh
|
||||
|
||||
install_doasconf()
|
||||
{
|
||||
src="${sharedir}"/doas.conf
|
||||
dest="${localbase}"/etc/doas.conf
|
||||
if grep -Fq "$(cat "${src}")" "${dest}"; then
|
||||
printok "doas.conf is up to date"
|
||||
else
|
||||
cat "${src}" >> "${dest}"
|
||||
printok "${dest} updated"
|
||||
fi
|
||||
}
|
||||
|
||||
##
|
||||
# main
|
||||
install_doasconf
|
||||
src="${sharedir}"/doas.conf
|
||||
dest="${localbase}"/etc/doas.conf
|
||||
if grep -Fq "$(cat "${src}")" "${dest}"; then
|
||||
printok "doas.conf is up to date"
|
||||
else
|
||||
cat "${src}" >> "${dest}"
|
||||
printok "${dest} updated"
|
||||
fi
|
||||
|
|
|
@ -16,7 +16,7 @@ user="_sourcezap"
|
|||
if id -u "${user}" > /dev/null 2>&1; then
|
||||
printok "${user} user exists"
|
||||
else
|
||||
pw useradd
|
||||
pw useradd \
|
||||
-n "${user}" \
|
||||
-c "sourcezap user" \
|
||||
-m \
|
||||
|
|
Loading…
Reference in a new issue