summaryrefslogtreecommitdiffstats
path: root/install/ui/test/bin/update_ipa_init.sh
blob: 23852a2693ac72fb29a6bf468e05caedb7851065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

FIXTURE_DIR=$1

INIT_FILE=$FIXTURE_DIR/ipa_init.json

usage(){
        echo "$0 {FIXTURE_DIR}"
        exit 1
}

if [ ! -f $INIT_FILE ]
then
        usage
        exit 1
fi



curl -v -H "Content-Type:application/json" -H "Accept:applicaton/json" --negotiate -u :  --cacert /etc/ipa/ca.crt  -d '{"method":"batch","params":[[{"method":"json_metadata","params":[[],{}]},{"method":"i18n_messages","params":[[],{}]},{"method":"user_find","params":[[],{"whoami":true,"all":true}]},{"method":"env","params":[[],{}]},{"method":"dns_is_enabled","params":[[],{}]},{"method":"hbacrule_find","params":[[],{"accessruletype":"deny"}]}],{}]}'  -X POST  https://`hostname`/ipa/json  | sed 's/[ \t]*$//' >   $INIT_FILE