9 lines
274 B
Bash
9 lines
274 B
Bash
|
#!/bin/sh -eux
|
||
|
|
||
|
systemctl unmask gssproxy
|
||
|
ipa-server-install --hostname=$(hostname) -r EXAMPLE.TEST -n example.test --setup-dns --no-forwarders --allow-zone-overlap -p Secret123 -a Secret123 -U
|
||
|
echo Secret123 | kinit admin
|
||
|
ipa config-show
|
||
|
ipa-server-install --uninstall -U
|
||
|
|