Compare commits
3 commits
0a912e3638
...
efc9f7ed28
Author | SHA1 | Date | |
---|---|---|---|
efc9f7ed28 | |||
741f85cfc2 | |||
1b1ee6606d |
9 changed files with 101 additions and 59 deletions
5
Makefile
5
Makefile
|
@ -10,9 +10,8 @@ install:
|
||||||
@find share/ man/ -type f -exec install -v -m 0644 "{}" $(PREFIX)/"{}" \;
|
@find share/ man/ -type f -exec install -v -m 0644 "{}" $(PREFIX)/"{}" \;
|
||||||
|
|
||||||
deinstall:
|
deinstall:
|
||||||
rm $(BINDIR)/portzap
|
rm -rf $(BINDIR)/portzap
|
||||||
rm $(BINDIR)/setup-portzap
|
rm -rf $(MANDIR)/portzap.8
|
||||||
rm $(MANDIR)/portzap.8
|
|
||||||
rm -rf $(LIBEXECDIR)
|
rm -rf $(LIBEXECDIR)
|
||||||
rm -rf $(SHAREDIR)
|
rm -rf $(SHAREDIR)
|
||||||
|
|
||||||
|
|
|
@ -35,4 +35,4 @@ cd "${gitdir}"
|
||||||
"${git}" fetch origin
|
"${git}" fetch origin
|
||||||
"${git}" checkout "${branch}" ||
|
"${git}" checkout "${branch}" ||
|
||||||
"${git}" checkout -t origin/"${branch}"
|
"${git}" checkout -t origin/"${branch}"
|
||||||
printok "checkout ${branch}"
|
printok "checkout complete"
|
||||||
|
|
|
@ -5,7 +5,6 @@ set -e
|
||||||
# variables
|
# variables
|
||||||
localbase=${LOCALBASE:-$(realpath "$(dirname "$0")"/../../..)}
|
localbase=${LOCALBASE:-$(realpath "$(dirname "$0")"/../../..)}
|
||||||
libexec="${localbase}"/libexec/portzap
|
libexec="${localbase}"/libexec/portzap
|
||||||
mode=u=rwX,g=rX,o=
|
|
||||||
git="${libexec}"/utils/git/run
|
git="${libexec}"/utils/git/run
|
||||||
gitdir=$1
|
gitdir=$1
|
||||||
installdir=$2
|
installdir=$2
|
||||||
|
@ -16,51 +15,6 @@ revfile=$3
|
||||||
# shellcheck source=/dev/null
|
# shellcheck source=/dev/null
|
||||||
. "${libexec}"/functions/print.sh
|
. "${libexec}"/functions/print.sh
|
||||||
|
|
||||||
perform_update()
|
|
||||||
{
|
|
||||||
rev=$(cat "${revfile}")
|
|
||||||
add=$("${libexec}"/utils/git/get-changed-files "${gitdir}" "${rev}")
|
|
||||||
del=$("${libexec}"/utils/git/get-removed-files "${gitdir}" "${rev}")
|
|
||||||
for file in ${del}; do
|
|
||||||
target="${installdir}/${file}"
|
|
||||||
parent=$(dirname "${target}")
|
|
||||||
echo "rm ${target}"
|
|
||||||
rm -f "${target}"
|
|
||||||
find "${parent}" -type d -maxdepth 0 -empty -delete
|
|
||||||
done
|
|
||||||
for file in ${add}; do
|
|
||||||
target="${installdir}/${file}"
|
|
||||||
parent=$(dirname "${target}")
|
|
||||||
parents=""
|
|
||||||
while [ ! -e "${parent}" ]; do
|
|
||||||
parents="${parent} ${parents}"
|
|
||||||
parent=$(dirname "${parent}")
|
|
||||||
done
|
|
||||||
for dir in ${parents}; do
|
|
||||||
run_install "-d" "${dir}"
|
|
||||||
done
|
|
||||||
run_install "${file}" "${target}"
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
perform_install()
|
|
||||||
{
|
|
||||||
find -s . \
|
|
||||||
-maxdepth 1 \
|
|
||||||
! -name "." \
|
|
||||||
! -name ".git" \
|
|
||||||
! -name ".gitignore" \
|
|
||||||
! -name ".hooks" \
|
|
||||||
! -name ".arcconfig" \
|
|
||||||
-exec cp -Rpv {} "${installdir}" \;
|
|
||||||
chown -Rv root "${installdir}"
|
|
||||||
}
|
|
||||||
|
|
||||||
run_install()
|
|
||||||
{
|
|
||||||
install -o root -g _portzap -m "${mode}" -v "${@}"
|
|
||||||
}
|
|
||||||
|
|
||||||
##
|
##
|
||||||
# main
|
# main
|
||||||
if [ "$(id -u)" != "0" ]; then
|
if [ "$(id -u)" != "0" ]; then
|
||||||
|
@ -68,14 +22,34 @@ if [ "$(id -u)" != "0" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
umask "${mode}"
|
|
||||||
cd "${gitdir}"
|
cd "${gitdir}"
|
||||||
run_install "-d" "${installdir}"
|
|
||||||
chmod ${mode} "${installdir}"
|
|
||||||
if [ -e "${revfile}" ]; then
|
if [ -e "${revfile}" ]; then
|
||||||
perform_update
|
##
|
||||||
|
# install update
|
||||||
|
rev=$(cat "${revfile}")
|
||||||
|
"${libexec}"/utils/install/run -d "${installdir}"
|
||||||
|
"${libexec}"/utils/install/update-deleted-files "${gitdir}" "${installdir}" "${rev}"
|
||||||
|
"${libexec}"/utils/install/update-changed-files "${gitdir}" "${installdir}" "${rev}"
|
||||||
else
|
else
|
||||||
perform_install
|
##
|
||||||
|
# install from scratch
|
||||||
|
umask u=rwX,g=rX,o=
|
||||||
|
"${libexec}"/utils/install/run -d "${installdir}"
|
||||||
|
find -s . \
|
||||||
|
-maxdepth 1 \
|
||||||
|
! -name "." \
|
||||||
|
! -name ".git" \
|
||||||
|
! -name ".github" \
|
||||||
|
! -name ".gitignore" \
|
||||||
|
! -name ".gitattributes" \
|
||||||
|
! -name ".git-blame-ignore-revs" \
|
||||||
|
! -name ".cirrus-ci" \
|
||||||
|
! -name ".cirrus.yml" \
|
||||||
|
! -name ".gitignore" \
|
||||||
|
! -name ".arclint" \
|
||||||
|
! -name ".arcconfig" \
|
||||||
|
-exec cp -Rpv {} "${installdir}" \;
|
||||||
|
chown -Rv root "${installdir}"
|
||||||
fi
|
fi
|
||||||
"${git}" rev-parse HEAD > "${revfile}"
|
"${git}" rev-parse HEAD > "${revfile}"
|
||||||
printok "install complete"
|
printok "install complete"
|
||||||
|
|
|
@ -16,6 +16,7 @@ libexec="${localbase}"/libexec/portzap
|
||||||
if [ "$(id -u)" = "0" ]; then
|
if [ "$(id -u)" = "0" ]; then
|
||||||
"${libexec}"/setup/setup-user
|
"${libexec}"/setup/setup-user
|
||||||
"${libexec}"/setup/setup-doas
|
"${libexec}"/setup/setup-doas
|
||||||
|
printok "setup complete"
|
||||||
else
|
else
|
||||||
printerr "you must be root"
|
printerr "you must be root"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -15,10 +15,10 @@ user=_portzap
|
||||||
##
|
##
|
||||||
# main
|
# main
|
||||||
if [ "$(id -u)" = "0" ]; then
|
if [ "$(id -u)" = "0" ]; then
|
||||||
pw userdel -n "${user}" || true
|
pw userdel -n "${user}" > /dev/null 2>&1 || true
|
||||||
pw groupdel -n "${user}" || true
|
pw groupdel -n "${user}" > /dev/null 2>&1 || true
|
||||||
rm -rf /home/"${user:?}"/ || true
|
rm -rf /home/"${user:?}"/ > /dev/null 2>&1 || true
|
||||||
printok "done"
|
printok "teardown complete"
|
||||||
else
|
else
|
||||||
printerr "you must be root"
|
printerr "you must be root"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
14
libexec/portzap/utils/install/run
Executable file
14
libexec/portzap/utils/install/run
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
##
|
||||||
|
# variables
|
||||||
|
mode=u=rwX,g=rX,o=
|
||||||
|
|
||||||
|
##
|
||||||
|
# main
|
||||||
|
install -o root \
|
||||||
|
-g _portzap \
|
||||||
|
-m "${mode}" \
|
||||||
|
-v \
|
||||||
|
"${@}"
|
28
libexec/portzap/utils/install/update-changed-files
Executable file
28
libexec/portzap/utils/install/update-changed-files
Executable file
|
@ -0,0 +1,28 @@
|
||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
##
|
||||||
|
# variables
|
||||||
|
localbase=${LOCALBASE:-$(realpath "$(dirname "$0")"/../../../..)}
|
||||||
|
libexec="${localbase}"/libexec/portzap
|
||||||
|
gitdir=$1
|
||||||
|
installdir=$2
|
||||||
|
rev=$3
|
||||||
|
|
||||||
|
##
|
||||||
|
# main
|
||||||
|
cd "${gitdir}"
|
||||||
|
files=$("${libexec}"/utils/git/get-changed-files "${gitdir}" "${rev}")
|
||||||
|
for file in ${files}; do
|
||||||
|
target="${installdir}/${file}"
|
||||||
|
parent=$(dirname "${target}")
|
||||||
|
parents=""
|
||||||
|
while [ ! -e "${parent}" ]; do
|
||||||
|
parents="${parent} ${parents}"
|
||||||
|
parent=$(dirname "${parent}")
|
||||||
|
done
|
||||||
|
for dir in ${parents}; do
|
||||||
|
"${libexec}"/utils/install/run -d "${dir}"
|
||||||
|
done
|
||||||
|
"${libexec}"/utils/install/run "${file}" "${target}"
|
||||||
|
done
|
22
libexec/portzap/utils/install/update-deleted-files
Executable file
22
libexec/portzap/utils/install/update-deleted-files
Executable file
|
@ -0,0 +1,22 @@
|
||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
##
|
||||||
|
# variables
|
||||||
|
localbase=${LOCALBASE:-$(realpath "$(dirname "$0")"/../../../..)}
|
||||||
|
libexec="${localbase}"/libexec/portzap
|
||||||
|
gitdir=$1
|
||||||
|
installdir=$2
|
||||||
|
rev=$3
|
||||||
|
|
||||||
|
##
|
||||||
|
# main
|
||||||
|
cd "${gitdir}"
|
||||||
|
files=$("${libexec}"/utils/git/get-removed-files "${gitdir}" "${rev}")
|
||||||
|
for file in ${files}; do
|
||||||
|
target="${installdir}"/"${file}"
|
||||||
|
parent=$(dirname "${target}")
|
||||||
|
echo "rm ${target}"
|
||||||
|
rm -f "${target}"
|
||||||
|
find "${parent}" -type d -maxdepth 0 -empty -delete
|
||||||
|
done
|
|
@ -1,5 +1,9 @@
|
||||||
* vNEXT
|
* vNEXT
|
||||||
|
|
||||||
|
** Break up 'portzap-install' into multiple files
|
||||||
|
'libexec/portzap/utils/install/' contains files that cover both
|
||||||
|
a fresh install and applying an update
|
||||||
|
|
||||||
** Add 'setup/setup-doas' improvements
|
** Add 'setup/setup-doas' improvements
|
||||||
More likely to do what's expected, but blind spots still exist
|
More likely to do what's expected, but blind spots still exist
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue