Compare commits
No commits in common. "b4eedd71f7dcc1f35fbb12bb210da28f8c6eaa6d" and "b3b828e278c1acce0ce9f999f9fa2be2400b2468" have entirely different histories.
b4eedd71f7
...
b3b828e278
|
@ -104,11 +104,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
# Lokal und remote eine Liste aller Unison-Archive erstellen
|
||||
REMOTEDIR="$UNISON"
|
||||
LOCALDIR="$UNISON"
|
||||
|
||||
# Lokal und remote eventuell vorhandene Lock- oder Cache-Dateien von Unison entfernen
|
||||
rm -f $LOCALDIR/lk*
|
||||
rm -f $LOCALDIR/fp*
|
||||
|
@ -116,6 +111,9 @@ ssh $SSHARGS $PAM_USER@$NFSSERVER rm -f $REMOTEDIR/lk*
|
|||
ssh $SSHARGS $PAM_USER@$NFSSERVER rm -f $REMOTEDIR/fp*
|
||||
|
||||
|
||||
# Lokal und remote eine Liste aller Unison-Archive erstellen
|
||||
REMOTEDIR="$UNISON"
|
||||
LOCALDIR="$UNISON"
|
||||
REMOTEFILES=$(ssh $SSHARGS $PAM_USER@$NFSSERVER find "$REMOTEDIR" -maxdepth 1 -type f -name 'ar*' -printf '%f\\n' | sort)
|
||||
LOCALFILES=$(find "$LOCALDIR" -maxdepth 1 -type f -name 'ar*' -printf '%f\n' | sort)
|
||||
|
||||
|
|
|
@ -60,7 +60,6 @@ ignore = Path */.cache2
|
|||
ignore = Name Cache
|
||||
ignore = Path */Cache
|
||||
ignore = Path .thunderbird/*/ImapMail
|
||||
ignore = Name .config/chromium/Singleton*
|
||||
EOF
|
||||
)
|
||||
|
||||
|
@ -78,7 +77,6 @@ ignore = Path */Cache
|
|||
ignore = Path .thunderbird/*/ImapMail
|
||||
ignore = Path Downloads
|
||||
ignore = Path VirtualBox VMs
|
||||
ignore = Name .config/chromium/Singleton*
|
||||
|
||||
EOF
|
||||
)
|
||||
|
@ -97,7 +95,7 @@ ignore = Path */Cache
|
|||
ignore = Path .thunderbird/*/ImapMail
|
||||
ignore = Path Downloads
|
||||
ignore = Path VirtualBox VMs
|
||||
ignore = Name .config/chromium/Singleton*
|
||||
|
||||
EOF
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue