Re: how to print values inside shepherd service gexp

2023-03-27 Thread Attila Lendvai
> (shepherd-service > (start > #~(make-forkexec-constructor > some-command > #:directory (pk #$twgter-directory) > #:log-file (pk #$twgter-log-file)) > )) > > If we instantiate this process in our OS declaration under services > and then run that OS inside a container and `herd start > this-servic

how to print values inside shepherd service gexp

2023-03-24 Thread Vladilen Kozin
Hello. I probably have all phases screwed up in my head now. (shepherd-service (start #~(make-forkexec-constructor some-command #:directory (pk #$twgter-directory) #:log-file (pk #$twgter-log-file)) )) If we instantiate this process in ou