VOL-2452: MIB Templating

- Release 2.3.0

- working with 2 onu types plus a patched bbsim

- templates must be loaded in etcd at system start
  time or just before the onus are plugged in/discovered.

- templates can be added or updated later

- these will likely be managed similarly to TechProfile templates
  and loaded at the same time and not checked in here.

- currently creating a new template requires running in DEBUG
  mode and gathering the mib that printed to the log for a
  new upload.  Then swapping out serial numbers and mac addresses
  with the replacement tokens, removing the timestamps and adding
  template_name and template_created headers

Change-Id: I2227e5e4dd85bd6ad562c9f241acf641d393588b
diff --git a/templates/load-mib-template.sh b/templates/load-mib-template.sh
new file mode 100755
index 0000000..ff4aea5
--- /dev/null
+++ b/templates/load-mib-template.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+#
+# Copyright 2020 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+set -x
+cat ALCL-BVMGR00BRAXS020XA-3FE47059BFHB52-v2.json | etcdctl --endpoints=172.17.0.1:2379 put service/voltha/omci_mibs/templates/ALCL/BVMGR00BRAXS020XA/3FE47059BFHB52
+cat ALCL-BVMGR00BRAXS020XA-3FE47059BFHB21-v2.json | etcdctl --endpoints=172.17.0.1:2379 put service/voltha/omci_mibs/templates/ALCL/BVMGR00BRAXS020XA/3FE47059BFHB21
+cat BRCM-BVM4K00BRA0915-0083-5023_020O02414-v2.json | etcdctl --endpoints=172.17.0.1:2379 put service/voltha/omci_mibs/templates/BRCM/BVM4K00BRA0915-0083/5023_020O02414
+cat BRCM-BVM4K00BRA0915-0083-5023_003GWOV36-VEIP-v1.json | etcdctl --endpoints=172.17.0.1:2379 put service/voltha/omci_mibs/templates/BRCM/BVM4K00BRA0915-0083/5023_003GWOV36
+cat BBSM-12345123451234512345-00000000000001-v1.json | etcdctl --endpoints=172.17.0.1:2379 put service/voltha/omci_mibs/templates/BBSM/12345123451234512345/00000000000001
+