Add install_colorbox utility
This commit is contained in:
parent
394e87806c
commit
bee671ff29
2 changed files with 24 additions and 0 deletions
2
distillery/utils/README
Normal file
2
distillery/utils/README
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
Files in this folder are utility scripts to be used from within individual WissKI instances.
|
||||||
|
They are mounted under /utils/ and should be used with care.
|
||||||
22
distillery/utils/install_colorbox.sh
Normal file
22
distillery/utils/install_colorbox.sh
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# make a temporary directory and cd into it
|
||||||
|
TEMPDIR=$(mktemp -d)
|
||||||
|
pushd "$TEMPDIR"
|
||||||
|
|
||||||
|
# curl the colorbox zip and unpack it
|
||||||
|
curl -L https://github.com/jackmoore/colorbox/archive/master.zip --output master.zip
|
||||||
|
unzip master.zip
|
||||||
|
|
||||||
|
# make the directory for libraries, and remove the old colorbox installation
|
||||||
|
chmod u+rw /var/www/data/project/web/sites/default/
|
||||||
|
mkdir -p /var/www/data/project/web/sites/default/libraries/
|
||||||
|
rm -rf /var/www/data/project/web/sites/default/libraries/colorbox
|
||||||
|
|
||||||
|
# copy over the new installation
|
||||||
|
mv colorbox-master/ /var/www/data/project/web/sites/default/libraries/colorbox
|
||||||
|
|
||||||
|
# cleanup
|
||||||
|
popd
|
||||||
|
rm -rf "$TEMPDIR"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue