kota65535 / github-openvpn-connect-action

GitHub Action for connecting to OpenVPN server.
MIT License
82 stars 55 forks source link

OpenVPN client warnings #24

Closed jaap3 closed 1 year ago

jaap3 commented 1 year ago

The OpenVPN client complains about the permission bits of the files created by this action:

WARNING: file 'ta.key' is group or others accessible
WARNING: file 'up.txt' is group or others accessible

This can be remedied by passing a mode option to the writeFileSync call, i.e. { mode: 0o600 }.