| | 79 | == How do I synchronize with my web site? == |
| | 80 | |
| | 81 | May First/People Link's servers have the owncloudcmd program installed which allows you to synchronize files on our servers to your owncloud account. |
| | 82 | |
| | 83 | * First, create a file in your user's home directory called `.netrc` |
| | 84 | * Make sure it is only readable by you: |
| | 85 | {{{ |
| | 86 | chmod 600 ~/.netrc |
| | 87 | }}} |
| | 88 | * Add the following information to the file, replace <your-user-name> and <your-password> with your actual username and password. |
| | 89 | {{{ |
| | 90 | machine share.mayfirst.org |
| | 91 | login <your-user-name> |
| | 92 | password <your-password> |
| | 93 | }}} |
| | 94 | * Create a scheduled job in the control panel with the following command: |
| | 95 | {{{ |
| | 96 | owncloudcmd --silent -n $HOME/ownCloud https://share.mayfirst.org/remote.php/webdav > /dev/null |
| | 97 | }}} |
| | 98 | |