mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 09:51:37 +00:00
* WIP to isolate users * Resolved issue with SSH AsUser Updated Isolated User Script to use Server User for Team Access Updated Path creation script to simplify for running as the isolated user * Included the server user * PHPMyAdmin script updated Wordpress Script Updated Updated Execute Script to support executing as isolated users * Issue Resolution & Resolved Failing Unit Tests * Fix for isolated_username vs user * Run the deploy as the isolated user * queue updates for isolated user * Support isolated users in cronjobs * script tests for isolated users * Queue tests for isolated users * Cronjob tests for isolated user * Removed default queue command for laravel apps * add default user to factory * laravel pint fixes * ensure echos are consistent * removed unneeded parameter * update * fix queues for isolated users * revert addslashes --------- Co-authored-by: Saeed Vaziry <mr.saeedvaziry@gmail.com>
42 lines
1.0 KiB
Bash
42 lines
1.0 KiB
Bash
if ! curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar; then
|
|
echo 'VITO_SSH_ERROR' && exit 1
|
|
fi
|
|
|
|
if ! chmod +x wp-cli.phar; then
|
|
echo 'VITO_SSH_ERROR' && exit 1
|
|
fi
|
|
|
|
if [ "__is_isolated__" == "true" ]; then
|
|
if ! mv wp-cli.phar /home/__isolated_username__/bin/wp; then
|
|
echo 'VITO_SSH_ERROR' && exit 1
|
|
fi
|
|
else
|
|
if ! mv wp-cli.phar /usr/local/bin/wp; then
|
|
echo 'VITO_SSH_ERROR' && exit 1
|
|
fi
|
|
fi
|
|
|
|
rm -rf __path__
|
|
|
|
if ! wp --path=__path__ core download; then
|
|
echo 'VITO_SSH_ERROR' && exit 1
|
|
fi
|
|
|
|
if ! wp --path=__path__ core config \
|
|
--dbname="__db_name__" \
|
|
--dbuser="__db_user__" \
|
|
--dbpass="__db_pass__" \
|
|
--dbhost="__db_host__" \
|
|
--dbprefix="__db_prefix__"; then
|
|
echo 'VITO_SSH_ERROR' && exit 1
|
|
fi
|
|
|
|
if ! wp --path=__path__ core install \
|
|
--url="http://__domain__" \
|
|
--title="__title__" \
|
|
--admin_user="__username__" \
|
|
--admin_password="__password__" \
|
|
--admin_email="__email__"; then
|
|
echo 'VITO_SSH_ERROR' && exit 1
|
|
fi
|