This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Unofficial Dump of UniFi system.cfg Properties | |
### | |
### WARNINGS: | |
### - This list is undocumented, unsupported, and incomplete. | |
### - Some options may be deprecated and ignored. | |
### - Some options WILL break your setup. | |
### - Some options work now but WILL break you in a future firmware update. | |
### | |
### USING THESE: | |
### See https://help.ui.com/hc/articles/205146040#2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
remoteuser="$1" | |
remotehost="$2" | |
remotedir="$3" | |
localdir="$4" | |
syncstatusfile=".lastsync" | |
if [[ ! -d "$4" ]]; then |