public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/6] ipsec: add new function ipsec_list_connections
@ 2017-08-03 10:51 Jonatan Schlag
  2017-08-03 10:51 ` [PATCH 2/6] vpn-security-policies: add new function vpn_security_policies_list_all Jonatan Schlag
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Jonatan Schlag @ 2017-08-03 10:51 UTC (permalink / raw)
  To: network

[-- Attachment #1: Type: text/plain, Size: 601 bytes --]

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/functions/functions.ipsec | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/src/functions/functions.ipsec b/src/functions/functions.ipsec
index ed889a6..a174a7f 100644
--- a/src/functions/functions.ipsec
+++ b/src/functions/functions.ipsec
@@ -729,3 +729,12 @@ ipsec_connection_destroy() {
 		fi
 	done
 }
+
+# List all ipsec connections
+ipsec_list_connections() {
+	local connection
+	for connection in ${NETWORK_IPSEC_CONNS_DIR}/*; do
+		[ -d ${connection} ] || continue
+		basename ${connection}
+	done
+}
-- 
2.6.3


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-08-03 10:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-03 10:51 [PATCH 1/6] ipsec: add new function ipsec_list_connections Jonatan Schlag
2017-08-03 10:51 ` [PATCH 2/6] vpn-security-policies: add new function vpn_security_policies_list_all Jonatan Schlag
2017-08-03 10:51 ` [PATCH 3/6] raw: add new command ipsec-connection-exists Jonatan Schlag
2017-08-03 10:51 ` [PATCH 4/6] raw: add new command list-ipsec-connections Jonatan Schlag
2017-08-03 10:51 ` [PATCH 5/6] raw: add command new list-vpn-security-policies-all Jonatan Schlag
2017-08-03 10:51 ` [PATCH 6/6] ipsec: add basic bash completion for ipsec Jonatan Schlag

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox