Frederic Guilbault
Frederic Guilbault
Does Tiny Core use polkit ? That could be a good way allow strict privilege execution
My sysadmin expertise tells me that the modern way to do it is to use `polkit-1`. But it's not universal, some linux don't implement it. 2nd approach would be to...
https://specifications.freedesktop.org/desktop-entry-spec/latest/ar01s06.html It's not explicit, but from reading those two specifications, The way I get it. it should be a full path to the file, or it's an `icon name` and...
For my 2 cents (And what they worth here :) ) I would like to see .deb packages in the releases for both x86_64 and Arm. Best would be a...
Oh super, merci @dominiquehausser
``` SSL Server Certificate Common Name (CN) sni.cloudflaressl.com Organisation (O) Cloudflare, Inc. Organisational Unit (OU) Common Name (CN) Cloudflare Inc ECC CA-3 Organisation (O) Cloudflare, Inc. Organisational Unit (OU) Issued...
``` def util_process_exist(process_name): pids = [pid for pid in os.listdir('/proc') if pid.isdigit()] exist = False for pid in pids: try: if process_name in open(os.path.join('/proc', pid, 'cmdline'), 'rb').read(): exist = True...
Here, line 230 it's part of the install script: https://github.com/SignalK/signalk-server-node/blob/30d918adfd7c9ce9c5956669ba14a85c5b197bc4/bin/signalk-server-setup#L230
Openplotter only packaging the opencpn application. As this problem append inside opencpn, it should be reported to the opencpn team. Closing ?
My work branch for the bug fix is here: https://github.com/FredericGuilbault/openplotter/tree/bug/handle_missing_signalkConfFile And the branch for the setting here: https://github.com/FredericGuilbault/openplotter/tree/feature/choose_SK_confFile_location