-
I'm using
so After I used I guess I'm looking for something like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It sounds like we would need to add such a flag as well and call As a workaround you could use lndinit wait-ready && chmod 777 /var/lib/lnd/rpc
Can you create a feature request for the |
Beta Was this translation helpful? Give feedback.
It sounds like we would need to add such a flag as well and call
os.Chmod()
explicitly after creating the socket: golang/go#11822As a workaround you could use
lndinit wait-ready
and thenchmod
the socket yourself:lndinit wait-ready && chmod 777 /var/lib/lnd/rpc
Can you create a feature request for the
--rpc-file-mode
equivalent flag please?