Re: [Ltsp-discuss] Volatile home directory (Jan Kowalsky)

2015-11-18 Thread Angus, Jackie
I've done something like this. In /usr/share/ldm/rc.d/S00-guest-sessions I put this line case "$LDM_USERNAME" in WipedUserHere*) ssh -S "$LDM_SOCKET" "$LDM_SERVER" 'cd; rsync -av --delete /etc/backups$ ;; esac then I keep copies of the the home directories in /etc/backup

Re: [Ltsp-discuss] Volatile home directory

2015-11-18 Thread Jan Kowalsky
Hi g, we have the same question in one of our networks. We provide guest accounts. Am 03.11.2015 um 14:23 schrieb g: > Hi all. > I'm trying to obtain a configuration for LTSP (no fat client) in which > all modifications made by the users on their home dir are discarded > before logout. > In

Re: [Ltsp-discuss] Volatile home directory (Jan Kowalsky)

2015-11-18 Thread g
Nice! This worked for me. Thanks Jackie. On 18/11/2015 13:30, Angus, Jackie wrote: > I've done something like this. In /usr/share/ldm/rc.d/S00-guest-sessions > > I put this line > > case "$LDM_USERNAME" in > WipedUserHere*) > ssh -S "$LDM_SOCKET" "$LDM_SERVER" 'cd; rsync -av