diff mbox series

[ovs-dev] ovs-pki: Remove executable bit from private/cakey.pem.

Message ID 20240213194238.1590415-1-i.maximets@ovn.org
State Accepted
Commit dda253293fd07033ef333c8bdce925d983185978
Delegated to: Ilya Maximets
Headers show
Series [ovs-dev] ovs-pki: Remove executable bit from private/cakey.pem. | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/intel-ovs-compilation success test: success

Commit Message

Ilya Maximets Feb. 13, 2024, 7:42 p.m. UTC
It's not an executable file.

Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
---
 utilities/ovs-pki.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Mike Pattrick Feb. 13, 2024, 8:27 p.m. UTC | #1
On Tue, Feb 13, 2024 at 2:42 PM Ilya Maximets <i.maximets@ovn.org> wrote:
>
> It's not an executable file.
>
> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>

Acked-by: Mike Pattrick <mkp@redhat.com>
Simon Horman Feb. 15, 2024, 1:15 p.m. UTC | #2
On Tue, Feb 13, 2024 at 08:42:36PM +0100, Ilya Maximets wrote:
> It's not an executable file.
> 
> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>

Acked-by: Simon Horman <horms@ovn.org>
Ilya Maximets Feb. 15, 2024, 10:49 p.m. UTC | #3
On 2/15/24 14:15, Simon Horman wrote:
> On Tue, Feb 13, 2024 at 08:42:36PM +0100, Ilya Maximets wrote:
>> It's not an executable file.
>>
>> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
> 
> Acked-by: Simon Horman <horms@ovn.org>

Thanks, Mike and Simon!  Applied.

Best regards, Ilya Maximets.
diff mbox series

Patch

diff --git a/utilities/ovs-pki.in b/utilities/ovs-pki.in
index e0ba910f9..37913cb6b 100755
--- a/utilities/ovs-pki.in
+++ b/utilities/ovs-pki.in
@@ -318,7 +318,7 @@  EOF
             -extensions ca_cert -out cacert.pem \
             -days 3650 -batch -keyfile private/cakey.pem -selfsign \
             -infiles careq.pem 1>&3 2>&3
-        chmod 0700 private/cakey.pem
+        chmod 0600 private/cakey.pem
 
         cd "$oldpwd"
     done