blob: d9ed5e2556d67cc9e057ce5b94257e0db377fcc1 [file] [log] [blame]
/**
* 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.
*
*/
package org.apache.kerby.kerberos.tool.admin.local.cmd;
import org.apache.kerby.has.common.HasException;
import org.apache.kerby.has.server.admin.LocalHadmin;
import org.apache.kerby.has.server.web.HostRoleType;
import java.io.File;
public class ExportKeytabsCommand extends HadminCommand {
private static final String USAGE = "\nUsage: export_keytabs <host> [role]\n"
+ "\tExample:\n"
+ "\t\texport_keytabs host1 HDFS\n";
public ExportKeytabsCommand(LocalHadmin hadmin) {
super(hadmin);
}
@Override
public void execute(String[] items) throws HasException {
if (items.length < 2) {
System.err.println(USAGE);
return;
}
String host = items[1];
boolean find = false;
if (items.length >= 3) {
if (exportKeytab(host, items[2])) {
find = true;
}
} else {
for (HostRoleType r : HostRoleType.values()) {
if (exportKeytab(host, r.getName())) {
find = true;
}
}
}
if (!find) {
System.out.println("Failed to get the keytab from backend, cannot find matching keytab.");
}
}
public boolean exportKeytab(String host, String role) throws HasException {
File keytab = getHadmin().getKeytabByHostAndRole(host, role);
if (keytab.length() > 0) {
System.out.println("Keytabs exported in " + keytab.getPath());
return true;
} else {
return false;
}
}
}