|
@@ -46,7 +46,10 @@ App.WizardController = Em.Controller.extend(App.LocalStorage, App.ThemesMappingM
|
|
'serviceComponents'
|
|
'serviceComponents'
|
|
],
|
|
],
|
|
|
|
|
|
- sensibleConfigs: ['admin_principal', 'admin_password'],
|
|
|
|
|
|
+ sensibleConfigs: [
|
|
|
|
+ { name: 'admin_principal', filename: 'krb5-conf.xml'},
|
|
|
|
+ { name: 'admin_password', filename: 'krb5-conf.xml' }
|
|
|
|
+ ],
|
|
|
|
|
|
init: function () {
|
|
init: function () {
|
|
this.clusters = App.Cluster.find();
|
|
this.clusters = App.Cluster.find();
|
|
@@ -886,7 +889,8 @@ App.WizardController = Em.Controller.extend(App.LocalStorage, App.ThemesMappingM
|
|
},
|
|
},
|
|
|
|
|
|
isExcludedConfig: function (configProperty) {
|
|
isExcludedConfig: function (configProperty) {
|
|
- return this.get('sensibleConfigs').indexOf(configProperty.name) > -1;
|
|
|
|
|
|
+ return this.get('sensibleConfigs').mapProperty('name').indexOf(configProperty.name) > -1
|
|
|
|
+ && this.get('sensibleConfigs').mapProperty('filename').indexOf(configProperty.filename) > -1;
|
|
},
|
|
},
|
|
|
|
|
|
/**
|
|
/**
|