summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorTom Barrett <tom@tombarrett.xyz>2020-02-20 06:47:16 -0600
committerTom Barrett <tom@tombarrett.xyz>2020-02-20 06:47:16 -0600
commitde098e1f22ae6cdde62aa9f6b75697852e872ced (patch)
tree12f0058d0262d7ceea37978980582e7e8cfda039 /scripts
parent5b5ad1848dca6bfa7b14f639a29e7c3063bca63a (diff)
can now use kadmin correctly
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/kerberos5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/kerberos b/scripts/kerberos
index f1e16ed..0fb455d 100755
--- a/scripts/kerberos
+++ b/scripts/kerberos
@@ -14,11 +14,12 @@ sshpass -p $ROOT_PASS ssh-copy-id -o "StrictHostKeyChecking=no" root@$IP
scp configs/kerberos/krb5.conf root@$IP:/etc/
scp configs/kerberos/kdc.conf root@$IP:/etc/krb5kdc/
scp configs/kerberos/kadm5.acl root@$IP:/etc/krb5kdc/
+scp configs/kerberos/interfaces root@$IP:/etc/network/
+scp configs/hosts root@$IP:/etc/
lxc-attach -n kerberos -- bash -c 'echo -e "'$KRB5_PASS'\n'$KRB5_PASS'" | krb5_newrealm'
lxc-attach -n kerberos -- bash -c 'echo -e "'$KRB5_ADMIN_PASS'\n'$KRB5_ADMIN_PASS'" | kadmin.local addprinc root/admin'
+lxc-attach -n kerberos -- systemctl restart networking
lxc-attach -n kerberos -- systemctl restart krb5-admin-server
lxc-attach -n kerberos -- systemctl restart krb5-kdc
-
-# should be able to now use kadmin, but cannot ?