2021-02-25 22:02:27 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Post install ybcon script
|
2021-02-25 17:57:49 +01:00
|
|
|
|
|
|
|
ln -sf /opt/bin/ybcon.sh /usr/bin/ybcon
|
2021-02-25 22:02:27 +01:00
|
|
|
|
|
|
|
bashcompleteLoc="/etc/bash_completion.d"
|
|
|
|
if [ -d $bashcompleteLoc ]; then
|
|
|
|
ln -sf /opt/etc/ybcon.d/bash-completion.sh "$bashcompleteLoc/ybcon.sh"
|
|
|
|
fi
|