Custom Query (230 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (67 - 69 of 230)

Ticket Resolution Summary Owner Reporter
#259 fixed Repository download page for Ubuntu/Debian points Trust users to Saucy package Sohrab Niramwalla
Description

On http://winswitch.org/downloads/debian-repository.html when you select "Ubuntu Trusty Tahir" from the dropdown, you are sent to http://winswitch.org/downloads/debian-repository.html?dist_select=saucy instead of http://winswitch.org/downloads/debian-repository.html?dist_select=trusty

#107 fixed SELinux prevents xauth from accessing per session auth files in user's home directory Antoine Martin Antoine Martin
Description

If selinux is enforcing, xauth just fails... So we have a workaround in place where we pass the global XAUTHORITY to the server and it uses that if /selinux/enforcing==1

Not ideal. I can't see any easy way of being able to create new xauth files with selinux enabled. PITA

See also: NX bug

#7 fixed SMB support: must tell client or server what/how to mount stuff Antoine Martin Antoine Martin
Description

Windows clients can't mount a remote tunneled server since we can't tell them what port to use (sigh). So maybe we should always do a reverse mount? (server mounts shares from the client)
We need to find out the list of shares (pysamba?) and allow the user to configure what is mounted (read-only, password,...)

The actual mounting is the easy part:

mount.cifs //127.0.0.1/public ./guest -o port=21062 -o guest


But we have to make sure we always unmount stuff when the server goes down... Problem is that some files might still be open!

We should also deal with non-tunneled setups nicely: simply connect to SMB on client or server directly. This weighs in favour of supporting client-mounts-server option.


We can figure out what shares are available with (needs a bit of magic parsing... sigh):

smbclient -U guest -N -L localhost

or

smbclient -A /path/to/auth-file -L localhost

pysamba does not seem to help here, unless I am missing something.

See bug #91 for the next step.

Note: See TracQuery for help on using queries.