toolkit/func/stacks/ipa/23-ipa-sudo.sh

20 lines
479 B
Bash
Raw Normal View History

2021-07-05 06:50:25 +00:00
#!/bin/bash
if m_getArch aarch64 | grep -qE 'aarch64'; then
r_log "ipa -bash" "Skipping for aarch64"
exit 0
fi
if [ "$IPAINSTALLED" -eq 1 ]; then
r_log "ipa" "IPA was not successfully installed. Aborting."
r_checkExitStatus 1
fi
2022-06-20 23:49:14 +00:00
kdestroy &> /dev/null
klist 2>&1 | grep -E "(No credentials|Credentials cache .* not found)" &> /dev/null
r_checkExitStatus $?
2022-06-30 03:45:58 +00:00
echo "b1U3OnyX!" | kinit admin@RLIPA.LOCAL
2022-06-20 23:49:14 +00:00
klist | grep "admin@RLIPA.LOCAL" &> /dev/null
r_checkExitStatus $?