File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
samples/features/azure-arc/deployment/kubeadm/ubuntu-single-node-vm Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Get controller username and password as input. It is used as default for the controller.
4
4
#
5
- if [ -z " $CONTROLLER_USERNAME " ]
5
+ if [ -z " $AZDATA_USERNAME " ]
6
6
then
7
7
read -p " Create Username for Azure Arc Data Controller: " username
8
8
echo
9
- export CONTROLLER_USERNAME =$username
9
+ export AZDATA_USERNAME =$username
10
10
fi
11
- if [ -z " $CONTROLLER_PASSWORD " ]
11
+ if [ -z " $AZDATA_PASSWORD " ]
12
12
then
13
13
while true ; do
14
14
read -s -p " Create Password for Azure Arc Data Controller: " password
18
18
[ " $password " = " $password2 " ] && break
19
19
echo " Password mismatch. Please try again."
20
20
done
21
- export CONTROLLER_PASSWORD =$password
21
+ export AZDATA_PASSWORD =$password
22
22
fi
23
23
24
24
# Prompt for private preview repository username and password provided by Microsoft
@@ -110,7 +110,7 @@ cd setupscript/
110
110
111
111
# Download and install azdata prerequisites
112
112
#
113
- sudo apt install -y libodbc1 odbcinst odbcinst1debian2 unixodbc
113
+ sudo apt install -y libodbc1 odbcinst odbcinst1debian2 unixodbc apt-transport-https libkrb5-dev
114
114
115
115
# Download and install azdata package
116
116
#
You can’t perform that action at this time.
0 commit comments