Commit db5c7fa9 authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

fix for meepctl initial install

parent 34c3dc57
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version: 1.6.6
version: 1.6.7
repo:
  name: AdvantEDGE

+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ type versionInfo struct {
	BuildID   string `json:"build,omitempty"`
}

const meepctlVersion = "1.6.6"
const meepctlVersion = "1.6.7"
const na = "NA"

const versionDesc = `Display version information
+6 −4
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ import (
	yaml "gopkg.in/yaml.v2"
)

const configVersion = "1.6.6"
const configVersion = "1.6.7"

const defaultNotSet = "not set"

@@ -315,10 +315,12 @@ func ConfigIsIpv4(host string) bool {
func GetResourcePrerequisites(group string) ([]string, []string) {
	names := []string{}
	paths := []string{}
	if RepoCfg != nil {
		for name, path := range RepoCfg.GetStringMapString(group) {
			names = append(names, name)
			paths = append(paths, path)
		}
	}
	return names, paths
}