1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {{!
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- }}
- {{#if dataIsLoaded}}
- {{#if securityEnabled}}
- <div>
- <p class="text-success">{{t admin.security.enabled}}
- {{#isAccessible ADMIN}}
- <button class="btn btn-padding btn-warning admin-disable-security-btn" {{bindAttr disabled="isKerberosButtonsDisabled"}} {{action notifySecurityOffPopup target="controller"}}>{{t admin.kerberos.button.disable}} </button>
- {{#unless isManualKerberos}}
- <button class="btn btn-success" id="regenerate-keytabs" {{bindAttr disabled="isKerberosButtonsDisabled"}} {{action regenerateKeytabs target="controller"}}>
- <i class="icon-repeat"></i> {{t admin.kerberos.button.regenerateKeytabs}}</button>
- {{#if App.supports.storeKDCCredentials}}
- <button class="btn btn-primary" {{action showManageKDCCredentialsPopup target="controller"}}>{{t admin.kerberos.credentials.store.menu.label}}</button>
- {{/if}}
- {{/unless}}
- <br/>
- {{#unless isEditMode}}
- <a {{action makeConfigsEditable target="controller"}}
- class="pull-right edit-link">
- {{t common.edit}}
- </a>
- {{/unless}}
- {{/isAccessible}}
- </p>
- </div>
- <div id="serviceConfig">
- {{view App.ServicesConfigView}}
- </div>
- {{#if isEditMode}}
- <div class="btn-area pull-right">
- <button id="cancel-kerberos-reconfigure-identities" {{action makeConfigsUneditable target="controller"}}
- class="btn">{{t common.cancel}}</button>
- <button id="save-kerberos-reconfigure-identities"
- class="btn btn-success" {{bindAttr disabled="isSaveButtonDisabled"}}
- {{action submit target="controller"}}>{{t common.save}}</button>
- </div>
- {{/if}}
- {{else}}
- <div>
- <p class="muted background-text">{{t admin.security.disabled}}
- {{#isAccessible ADMIN}}
- <a class="btn btn-padding btn-success admin-enable-security-btn" {{action checkAndStartKerberosWizard target="controller"}}>{{t admin.kerberos.button.enable}} </a>
- <br/>
- {{/isAccessible}}
- </p>
- </div>
- {{/if}}
- {{else}}
- <div class="spinner"></div>
- {{/if}}
|