6
0
Fork 0
This repository has been archived on 2022-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
cdist-recycledcloud/type/__recycledcloud_wordpress/gencode-remote

14 lines
229 B
Bash
Executable File

#!/bin/sh
archive=wordpress.tar.gz
cat << EOF
if [ ! -f /var/www/wordpress ]; then
cd /var/www
curl https://wordpress.org/latest.tar.gz -o $archive
tar xf $archive
rm $archive
chown -R wordpress:wordpress wordpress
fi
EOF