mirror of
https://github.com/php/systems.git
synced 2026-03-23 23:32:12 +01:00
14 lines
471 B
Bash
Executable File
14 lines
471 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Updates (pear|pecl).php.net from rsync
|
|
#
|
|
# public_html/rest must be excluded because these are symlinks on the
|
|
# destination machine pointing to the static XML files for the installer.
|
|
#
|
|
# 4 * * * * root /usr/local/www/update 2&1>/dev/null
|
|
#
|
|
# $Id$
|
|
|
|
/usr/bin/rsync -aC --delete --delete-after --exclude=logs --exclude=public_html/rest --exclude=public_html/packages \
|
|
rsync.php.net::peclweb /local/www/sites/pecl.php.net
|