diff options
author | ZachIR <zachir@librem.one> | 2022-10-13 17:40:50 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2022-10-13 17:40:50 -0500 |
commit | eb455c5b1adc0b6baf6171fec804c86c4f95a33f (patch) | |
tree | 0710d97f03ed26cb4ac3fc516987b9c362e9b2a2 /s6-db-update | |
parent | 2d7be85e05e556d93a9ab51788ce5dd19745fef6 (diff) |
add s6 scripts
Diffstat (limited to 's6-db-update')
-rwxr-xr-x | s6-db-update | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/s6-db-update b/s6-db-update new file mode 100755 index 0000000..5359b5d --- /dev/null +++ b/s6-db-update @@ -0,0 +1,31 @@ + #!/bin/sh + + DATAPATH="/home/${USER}/.local/share/s6" + RCPATH="${DATAPATH}/rc" + DBPATH="${RCPATH}/compiled" + SVPATH="${DATAPATH}/sv" + SVDIRS="/run/${USER}/s6-rc/servicedirs" + TIMESTAMP=$(date +%s) + + if ! s6-rc-compile "${DBPATH}"-"${TIMESTAMP}" "${SVPATH}"; then + echo "Error compiling database. Please double check the ${SVPATH} directories." + exit 1 + fi + + if [ -e "/run/${USER}/s6-rc" ]; then + for dir in "${SVDIRS}"/*; do + if [ -e "${dir}/down" ]; then + s6-svc -x "${dir}" + fi + done + s6-rc-update -l "/run/${USER}/s6-rc" "${DBPATH}"-"${TIMESTAMP}" + fi + + if [ -d "${DBPATH}" ]; then + ln -sf "${DBPATH}"-"${TIMESTAMP}" "${DBPATH}"/compiled && mv -f "${DBPATH}"/compiled "${RCPATH}" + else + ln -sf "${DBPATH}"-"${TIMESTAMP}" "${DBPATH}" + fi + + echo "==> Switched to a new database for ${USER}." + echo " Remove any old unwanted/unneeded database directories in ${RCPATH}." |