006b3e6228
In order to avoid conflict with installing dependencies for IPA from pypi and distribution packages this patch propose installing IPA in a virtual environment. Closes-Bug: #1506792 Change-Id: I6a4c6403813d86f4110e98449ddd874109101b9e
32 lines
636 B
Bash
Executable File
32 lines
636 B
Bash
Executable File
#!/bin/sh -e
|
|
### BEGIN INIT INFO
|
|
# Provides: ironic-python-agent
|
|
# Required-Start: $local_fs networking
|
|
# Required-Stop: $local_fs
|
|
# Default-Start: S
|
|
# Default-Stop: 0 6
|
|
# X-Start-Before:
|
|
# Short-Description: Ironic Python Agent
|
|
# Description: Starts Ironic Python Agent for instance deployment
|
|
### END INIT INFO
|
|
|
|
NAME=ironic-python-agent
|
|
INIT_NAME=/etc/init.d/${NAME}
|
|
SCRIPT_NAME=/usr/local/bin/${NAME}
|
|
|
|
[ -x $SCRIPT_NAME ] || exit 0
|
|
|
|
case "$1" in
|
|
start)
|
|
$SCRIPT_NAME
|
|
;;
|
|
stop)
|
|
;;
|
|
*)
|
|
echo "Usage: $INIT_NAME {start|stop}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|