You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i hope i can have a ignore list in client to ignore to sync some files to server. I do not need to sync some files from server to my client_A; But these files need to sync from server to my client_B.
The text was updated successfully, but these errors were encountered:
deploy(){
....
echo -n " > /home/$username/.lipsyncd/lipsyncd.log..."
touch /home/$username/.lipsyncd/lipsyncd.log
chmod g+w /home/$username/.lipsyncd/lipsyncd.log
# release the log file to be a normal user mode
################################################
chown $username:$username /home/$username/.lipsyncd/lipsyncd.log
echo "done"
# create ignore list file, which format as same to rsync --exclude-from
################################################
echo -n " > /home/$username/.lipsyncd/lipsyncd_exclude_file..."
touch /home/$username/.lipsyncd/lipsyncd_exclude_file
chmod g+w /home/$username/.lipsyncd/lipsyncd_exclude_file
chown $username:$username /home/$username/.lipsyncd/lipsyncd_exclude_file
echo "done"
echo -n " > checking for $lipsync_dir_local..."
if [ ! -d $lipsync_dir_local ]; then
....
}
i hope i can have a ignore list in client to ignore to sync some files to server. I do not need to sync some files from server to my client_A; But these files need to sync from server to my client_B.
The text was updated successfully, but these errors were encountered: