Overview
Comment: | Added an "install" command for setting up symlinks to binaries |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8998f05e2e99d7c27f7c5e20547aae25 |
User & Date: | rkeene on 2017-10-30 18:03:48 |
Other Links: | manifest | tags |
Context
2017-12-15
| ||
05:31 | Set default negative ttl to the same as the positive ttl check-in: b075183fad user: rkeene tags: trunk | |
2017-10-30
| ||
18:03 | Added an "install" command for setting up symlinks to binaries check-in: 8998f05e2e user: rkeene tags: trunk | |
18:03 | Added start of docker init code check-in: 2d83a6231c user: rkeene tags: trunk | |
Changes
Modified appfs-cache from [74cf59f6d3] to [28b85c645c].
︙ | ︙ | |||
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | return 1 fi call_appfsd --tcl 'file delete -force -- {*}[glob -directory $::appfs::cachedir {[0-9a-f][0-9a-f]}]' || return 1 call_appfsd --sqlite3 'DELETE FROM sites; DELETE FROM packages; DELETE FROM files; VACUUM;' || return 1 } case "$1" in invalidate) invalidate || exit 1 ;; remove-site) remove_site "$2" || exit 1 ;; clean) | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | return 1 fi call_appfsd --tcl 'file delete -force -- {*}[glob -directory $::appfs::cachedir {[0-9a-f][0-9a-f]}]' || return 1 call_appfsd --sqlite3 'DELETE FROM sites; DELETE FROM packages; DELETE FROM files; VACUUM;' || return 1 } function install() { local site packages local package packagedir site="$1" shift packages=("$@") if [ -z "${site}" -o -z "${packages[*]}" ]; then echo "usage: appfs-cache install <site> <package>..." >&2 return 1 fi for package in "${packages[@]}"; do packagedir="/opt/appfs/${site}/${package}/platform/latest" ## XXX:TODO: Allow installation to other locations ln -s "${packagedir}"/bin/* /bin/ done return 0 } case "$1" in install) shift install "$@" || exit 1 ;; invalidate) invalidate || exit 1 ;; remove-site) remove_site "$2" || exit 1 ;; clean) |
︙ | ︙ |