mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
18 lines
503 B
Bash
Executable file
18 lines
503 B
Bash
Executable file
#!/bin/bash
|
|
#ddev-generated
|
|
# Remove the line above if you don't want this file to be overwritten when you run
|
|
# ddev get julienloizelet/ddev-playwright
|
|
#
|
|
# This file comes from https://github.com/julienloizelet/ddev-playwright
|
|
#
|
|
|
|
# Change pwuser IDs to the host IDs supplied by DDEV
|
|
usermod -u ${DDEV_UID} pwuser
|
|
groupmod -g ${DDEV_GID} pwuser
|
|
usermod -a -G ssl-cert pwuser
|
|
|
|
# Install DDEV certificate
|
|
mkcert -install
|
|
|
|
# Run CMD from parameters as pwuser
|
|
sudo -u pwuser vncserver -fg -disableBasicAuth
|