Commit 1d5ad154489f
Changed files (1)
pkgs
scripts
bin
pkgs/scripts/bin/chos4
@@ -9,7 +9,7 @@ curl -s "${BASE_URL}/vincent/webaccess.gpg"|gpg --decrypt > ~/sync/work/chos4/we
curl -s "${BASE_URL}/vincent/kubeconfig.gpg"|gpg --decrypt > ~/sync/work/chos4/config.os4 && export KUBECONFIG=~/sync/work/chos4/config.os4
for file in kubeadmin.password.os4 webaccess.os4 config.os4; do
- if test -d $HOME/.kube/$file; then
+ if ! test -f $HOME/.kube/$file; then
ln -s $HOME/sync/work/chos4/$file ~/.kube/$file
fi
done