<shiru>
I have app-emacs/emacs-daemon installed and I follow the wiki to get the daemon running at the default runlevel (openRC) but when I boot my system and login, the /etc/init.d/emacs.[username] service is stopped. Is it normal?
<shiru>
I would like to get the daemon service running automatically at login.
___nick___ has joined #ruby
shiru has quit [Quit: ERC 5.4 (IRC client for GNU Emacs 28.1)]
shiru has joined #ruby
shiru has quit [Quit: ERC 5.4 (IRC client for GNU Emacs 28.1)]
<f1refly>
I'm trying to lauch gpg as a subprocess to encrypt data that I want to sent with stdin and read the result back with stdout
<f1refly>
currently I'm using IO.popen('gpg --encrypt --recipient MYKEY -') do |proc| and then proc.puts(data), but it returns a broken pipe error, so seemingly gpg just exits without even accepting any input
<f1refly>
Am I using IO.popen wrong? I cannot use any library in my current situation, gems for alternative popen and gpg wrappers won't work for me :/
RickHull has joined #ruby
Guest18 has joined #ruby
Guest18 has quit [Client Quit]
goldfish has quit [Ping timeout: 256 seconds]
gproto23 has joined #ruby
Guest18 has joined #ruby
Sankalp- has joined #ruby
Sankalp has quit [Ping timeout: 276 seconds]
Sankalp- is now known as Sankalp
gproto23 has quit [Remote host closed the connection]
sphex has joined #ruby
markong has joined #ruby
Thanzex4 has joined #ruby
Thanzex has quit [Read error: Connection reset by peer]
Thanzex4 is now known as Thanzex
Guest18 has quit [Quit: Client closed]
Guest18 has joined #ruby
mixfix41 has quit [Excess Flood]
RickHull has quit [Ping timeout: 255 seconds]
mixfix41 has joined #ruby
Guest18 has quit [Quit: Client closed]
Sheilong has joined #ruby
markong has quit [Ping timeout: 258 seconds]
thoraxe1 has quit [Quit: WeeChat 2.2]
Aminda has quit [Ping timeout: 240 seconds]
Aminda has joined #ruby
noname has joined #ruby
RickHull has joined #ruby
tuxcrafter has joined #ruby
stylo has joined #ruby
Ziyan has quit [Ping timeout: 246 seconds]
Ziyan has joined #ruby
gproto23 has joined #ruby
noname has quit [Ping timeout: 240 seconds]
noname has joined #ruby
noname_1 has joined #ruby
noname has quit [Ping timeout: 246 seconds]
noname_1 has quit [Ping timeout: 255 seconds]
noname has joined #ruby
rooter9 has joined #ruby
noname has quit [Ping timeout: 256 seconds]
perrierjouet has quit [Quit: WeeChat 3.5]
perrierjouet has joined #ruby
rooter9 has quit [Ping timeout: 258 seconds]
jpn has joined #ruby
jpn has quit [Ping timeout: 276 seconds]
Aminda has quit [Remote host closed the connection]
Aminda has joined #ruby
<adam12>
f1refly: It might be worth using Open3 instead. It gives you separate handles for input and output, which will allow you to write, then close stdin. And read from stdout.