kentonv changed the topic of #sandstorm to: Welcome to #sandstorm: home of all things sandstorm.io. Say hi! | Have a question but no one is here? Try asking in the discussion group: https://groups.google.com/group/sandstorm-dev
<JacobWeisz[m]> I had set myself a goal to at least touch code daily, and for a while I felt it was beneficial, but yeah, I didn't flip out if there was a gap.
frigginglorious has joined #sandstorm
vertigo_38 has quit [Ping timeout: 265 seconds]
<isd> Reminder: office hours tomorrow. Just updated the wiki.
frigginglorious has quit [Ping timeout: 256 seconds]
_whitelogger has joined #sandstorm
nicoo has quit [Remote host closed the connection]
nicoo has joined #sandstorm
nicoo has quit [Remote host closed the connection]
nicoo has joined #sandstorm
_whitelogger has joined #sandstorm
frigginglorious has joined #sandstorm
frigginglorious has quit [Ping timeout: 256 seconds]
frigginglorious has joined #sandstorm
frigginglorious has quit [Read error: Connection reset by peer]
frigginglorious1 has joined #sandstorm
frigginglorious1 is now known as frigginglorious
vertigo_38 has joined #sandstorm
digitalcircuit has quit [Quit: Signing off from Quassel - see ya!]
digitalcircuit has joined #sandstorm
frigginglorious has quit [Quit: frigginglorious]
xet7 has quit [Read error: Connection reset by peer]
xet7 has joined #sandstorm
vertigo_38 has quit [Ping timeout: 265 seconds]
vertigo_38 has joined #sandstorm
<isd> Reminder: office hours in 40 min
xet7 has quit [Quit: Leaving]
<JacobWeisz[m]> Dunno if I'll make it today
<isd> Reminder: office hours.
<abliss> thanks. trying to install web shell from there gives a 404, but it did include a link to the github project which is all i need.
<abliss> Ian Denhardt do you have a sample filesystem server that i can pair with the LD_PRELOAD .so to play around?
<abliss> oh, i guess that's what sandstorm-filesystem is
<abliss> any chance you could toss a release spk of that up on github? the go commands to build it don't work (they reference a missing `../go.sandstorm`)
<JacobWeisz[m]> I remember older spks of sandstorm filesystem being shared on the mailing list. But not recent ones.
<isd> abliss: try deleting the 'replace' line in go.mod. It's in there so I can hack on both projects at once, but it probably shouldn't be.
<isd> I've got a one off server that I've been using that I should push to a branch.
<isd> Just pushed to the 'standalone-server' branch.
<isd> Have a look in filesystem/local/server
<abliss> yeah, deleting it allowed it to build
<isd> Note that the master branch expects the RwDirectory to be the bootstrap interface, so that won't quite work against the C++ version.
<isd> As mentioned, I'm porting it over to rust on the rust branch
<isd> Neither branch works :P. The C++ version seems to hang after a couple calls, and I haven't debugged it (and probably won't)
<isd> (The rust version just has some stuff that still needs implementing)
<abliss> if found filesystem/local/local.go , but not sure how to run it?
xet7 has joined #sandstorm
<isd> See above; I made a branch with a server/ directory that has an actual executable.
<isd> local.go is a library
<abliss> are you sure you pushed? standalone-server seems 2 months old
<isd> I forgot to commit before pushing. Try now.
<abliss> ok, got it... is there an easy way to plug it into SANDSTORM_VFS_SERVER?
<abliss> it looks like the ld-preload shim wants a tcp host:port but the server wants a unix socket name? i guess i can glue those together with socat
xet7 has quit [Remote host closed the connection]
xet7 has joined #sandstorm
<isd> abliss: you can do 'unix:/path/to/socket' for the preload library
<isd> But, if you're using master it's not going to work because that server binary offers the wrong thing as the bootstrap interface.
<isd> I was using this locally experimenting with the rust version.
<isd> It should work to change bootstrap.Client to rootClient.Client on line 60 of filesystem/local/server/main.go, if you want to play with master