| garciadeblas | 8b7767b | 2017-04-20 19:21:49 +0200 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | |
| 3 | ## |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 5 | # not use this file except in compliance with the License. You may obtain |
| 6 | # a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 12 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 13 | # License for the specific language governing permissions and limitations |
| 14 | # under the License. |
| 15 | # |
| 16 | # For those usages not covered by the Apache License, Version 2.0 please |
| 17 | # contact with: OSM_TECH@list.etsi.org |
| 18 | ## |
| 19 | |
| 20 | echo "POST INSTALL OSM-OPENVIM" |
| 21 | OPENVIM_PATH=`python -c 'import osm_openvim; print osm_openvim.__path__[0]'` |
| 22 | |
| 23 | systemctl enable osm-openvim.service |
| 24 | |
| 25 | #Creation of log folder |
| 26 | mkdir -p /var/log/osm |
| 27 | |
| 28 | #configure arg-autocomplete for this user |
| 29 | su $SUDO_USER -c 'activate-global-python-argcomplete --user' |
| 30 | if ! su $SUDO_USER -c 'grep -q bash_completion.d/python-argcomplete.sh ${HOME}/.bashrc' |
| 31 | then |
| 32 | echo " inserting .bash_completion.d/python-argcomplete.sh execution at .bashrc" |
| 33 | su $SUDO_USER -c 'echo ". ${HOME}/.bash_completion.d/python-argcomplete.sh" >> ~/.bashrc' |
| 34 | fi |
| 35 | |
| 36 | echo ' |
| 37 | To make OPENVIM work, you have to install mysql and a database, and finally start osm-openvim service' |
| 38 | echo " ${OPENVIM_PATH}/database_utils/install-db-server.sh # -h for help" |
| 39 | echo ' service osm-openvim start' |
| 40 | |
| 41 | |