You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
## |
|
## wordpress-cron.sh -- WordPress Cron Job Trigger |
|
## |
|
|
|
server=`grep '^Listen' @l_prefix@/etc/wordpress/wordpress-apache.conf | head -1 | awk '{ print $2; }'` |
|
@l_prefix@/bin/wget -qO /dev/null http://$server/wp-mail.php >/dev/null 2>&1 || true |
|
|
|
|