storlets/install_libs.sh
Takashi Kajinami a9ad3a967e Offload entry point and command from image
... to engine side. This allows operators to prepare multiple images
with less steps.

Change-Id: I279f4ad10c19e4121d4906469c989a935e504552
2023-12-13 15:32:09 +09:00

16 lines
303 B
Bash
Executable File

#!/bin/bash
#
# Install required libraries written in c and java
#
# NOTE: The libraries are currently installed under /usr/lib/storlets
# so you may need root privilege to execute this script
set -x
# install c library
cd src/c/sbus
make && make install
cd -
# Install java library
ant install