- Fix order of Password TLS certificate choosers (rh #464765)
- Use %find_lang for locale-specific files (rh #448551) - Fix --script-security issues with OpenVPN 2.1-rc9 and later (rh #460754)epel8
parent
f8b55826c4
commit
8b5809d608
@ -0,0 +1,21 @@
|
||||
diff -up NetworkManager-openvpn-0.7.0/properties/nm-openvpn-dialog.glade.entries NetworkManager-openvpn-0.7.0/properties/nm-openvpn-dialog.glade
|
||||
--- NetworkManager-openvpn-0.7.0/properties/nm-openvpn-dialog.glade.entries 2008-09-30 15:59:39.000000000 -0400
|
||||
+++ NetworkManager-openvpn-0.7.0/properties/nm-openvpn-dialog.glade 2008-09-30 16:01:37.000000000 -0400
|
||||
@@ -426,7 +426,7 @@
|
||||
<widget class="GtkLabel" id="label8">
|
||||
<property name="visible">True</property>
|
||||
<property name="xalign">0</property>
|
||||
- <property name="label" translatable="yes">CA Certificate:</property>
|
||||
+ <property name="label" translatable="yes">User Certificate:</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="top_attach">1</property>
|
||||
@@ -438,7 +438,7 @@
|
||||
<widget class="GtkLabel" id="label6">
|
||||
<property name="visible">True</property>
|
||||
<property name="xalign">0</property>
|
||||
- <property name="label" translatable="yes">User Certificate:</property>
|
||||
+ <property name="label" translatable="yes">CA Certificate:</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="top_attach">2</property>
|
@ -0,0 +1,17 @@
|
||||
diff -up NetworkManager-openvpn-0.7.0/src/nm-openvpn-service.c.script-security NetworkManager-openvpn-0.7.0/src/nm-openvpn-service.c
|
||||
--- NetworkManager-openvpn-0.7.0/src/nm-openvpn-service.c.script-security 2008-09-30 15:56:42.000000000 -0400
|
||||
+++ NetworkManager-openvpn-0.7.0/src/nm-openvpn-service.c 2008-09-30 15:57:03.000000000 -0400
|
||||
@@ -611,6 +611,13 @@ nm_openvpn_start_openvpn_binary (NMOpenv
|
||||
add_openvpn_arg (args, "--syslog");
|
||||
add_openvpn_arg (args, "nm-openvpn");
|
||||
|
||||
+ /* Punch script security in the face; this option was added to OpenVPN 2.1-rc9
|
||||
+ * and defaults to disallowing any scripts, a behavior change from previous
|
||||
+ * versions.
|
||||
+ */
|
||||
+ add_openvpn_arg (args, "--script-security");
|
||||
+ add_openvpn_arg (args, "2");
|
||||
+
|
||||
/* Up script, called when connection has been established or has been restarted */
|
||||
add_openvpn_arg (args, "--up");
|
||||
add_openvpn_arg (args, NM_OPENVPN_HELPER_PATH);
|
Loading…
Reference in new issue