14 lines
298 B
Bash
14 lines
298 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
#--------------------------------------
|
||
|
#test -f /.profile && . /.profile
|
||
|
|
||
|
#======================================
|
||
|
# Greeting...
|
||
|
#--------------------------------------
|
||
|
echo "Configure image: [$kiwi_iname]..."
|
||
|
|
||
|
ln -sf /usr/bin/hyperkube /usr/local/bin/kube-controller-manager
|
||
|
|
||
|
exit 0
|