This code used to work for a long time, but now it stopped working as
expected:
let cmd = [
"/bin/sh",
"-c",
'/usr/bin/echo TEST >> ' + setup_file
];
cockpit.spawn (cmd, { superuser: true, err: "message" })
Now the output file (setup_file) is empty.
When I run that command on F33 it also does not write to the file. Ok,
so I changed it to just "echo STRING >> /tmp/my_file" which works on the
command line, but in Cockpit spawn it still does not write/echo to the file:
let cmd = [
'/usr/bin/echo TEST >> ' + setup_file
];
cockpit.spawn (cmd, { superuser: true, err: "message" })
I've tried different variations of this command, but none of them
actually write (or echo) to the file whne using spawn(). I also tried
"script(), but it didn't help. This used to work until just recently,
so I'm not sure what is wrong or what changed in Cockpit/Fedora...
Any suggestions would be great.
Thanks,
Mark
--
Directory Server Development Team