From 32244caf1c30819c38ca977e67557558a976a9d9 Mon Sep 17 00:00:00 2001
From: Stig Thormodsrud <stig@vyatta.com>
Date: Fri, 22 Oct 2010 17:38:15 -0700
Subject: Fist pass at adding archive to uri on commit.

---
 templates/system/config-mgmt/commit-uri/node.def | 24 ++++++++++++++++++++++++
 templates/system/config-mgmt/node.def            |  1 +
 2 files changed, 25 insertions(+)
 create mode 100644 templates/system/config-mgmt/commit-uri/node.def
 create mode 100644 templates/system/config-mgmt/node.def

(limited to 'templates/system/config-mgmt')

diff --git a/templates/system/config-mgmt/commit-uri/node.def b/templates/system/config-mgmt/commit-uri/node.def
new file mode 100644
index 00000000..7b483f9f
--- /dev/null
+++ b/templates/system/config-mgmt/commit-uri/node.def
@@ -0,0 +1,24 @@
+multi:
+priority: 400
+type: txt
+help: Commit URI
+
+syntax:expression: exec "/opt/vyatta/sbin/vyatta-config-mgmt.pl \
+                           --action=valid-uri                   \
+                           --uri=\"$VAR(@)\" "; "Invalid URI"
+
+create: if [ "$COMMIT_SIBLING_POSITION" = "LAST" ] || \
+           [ "$COMMIT_SIBLING_POSITION" = "FIRSTLAST" ] ; then
+             sudo ${vyatta_sbindir}/vyatta-config-mgmt.pl --action=add-uri
+        fi;
+
+delete: if [ "$COMMIT_SIBLING_POSITION" = "LAST" ] || \
+           [ "$COMMIT_SIBLING_POSITION" = "FIRSTLAST" ] ; then
+             sudo ${vyatta_sbindir}/vyatta-config-mgmt.pl --action=del-uri
+        fi;
+
+val_help: <uri> ; Uniform Resource Identifier
+comp_help: 
+  "scp://<user>:<passwd>@<host>/<dir>"
+  "ftp://<user>:<passwd>@<host>/<dir>"
+  "tftp://<host>/<dir>"
\ No newline at end of file
diff --git a/templates/system/config-mgmt/node.def b/templates/system/config-mgmt/node.def
new file mode 100644
index 00000000..03a4d65a
--- /dev/null
+++ b/templates/system/config-mgmt/node.def
@@ -0,0 +1 @@
+help: Configuration management settings
\ No newline at end of file
-- 
cgit v1.2.3