mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-14 15:53:28 +01:00
* misc fixes: - ensure SCRIPT_NAME is never empty, fixes #466 - static: if ending in '/' look for '/index.html' - tests: use local httpbin instead of iana.org tests - docker: switch to $VOLUME_DIR before initing collection - ensure static_prefix is set correctly after host prefix - bump version to 2.3.2.dev0 * rules update: fix fuzzy matching, rewriting rules for soundcloud
40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Get UID/GID from volume dir
|
|
VOLUME_UID=$(stat -c '%u' $VOLUME_DIR)
|
|
VOLUME_GID=$(stat -c '%g' $VOLUME_DIR)
|
|
|
|
MY_UID=$(id -u)
|
|
MY_GID=$(id -g)
|
|
|
|
# Run as custom user
|
|
if [ "$MY_GID" != "$VOLUME_GID" ] || [ "$MY_UID" != "$VOLUME_UID" ]; then
|
|
# create or modify user and group to match expected uid/gid
|
|
groupadd --gid $VOLUME_GID archivist || groupmod -o --gid $VOLUME_GID archivist
|
|
useradd -ms /bin/bash -u $VOLUME_UID -g $VOLUME_GID archivist || usermod -o -u $VOLUME_UID archivist
|
|
|
|
# initialize a collection if defined and not present
|
|
if [ -n "$INIT_COLLECTION" ] && [ ! -d $VOLUME_DIR/collections/$INIT_COLLECTION ]; then
|
|
su archivist -c "wb-manager init $INIT_COLLECTION"
|
|
fi
|
|
|
|
cmd="cd $PWD; $@"
|
|
|
|
# run process as new archivist user
|
|
su archivist -c "$cmd"
|
|
|
|
# run as current user (root)
|
|
else
|
|
# initialize a collection if defined and not present
|
|
if [ -n "$INIT_COLLECTION" ] && [ ! -d $VOLUME_DIR/collections/$INIT_COLLECTION ]; then
|
|
cd $VOLUME_DIR
|
|
wb-manager init $INIT_COLLECTION
|
|
fi
|
|
|
|
# run process directly
|
|
exec $@
|
|
fi
|
|
|