Harm Weites 0de0833675 Add config-internal/config-external to Nova-compute containers
Partially Implements: Blueprint standard-start

Change-Id: Ia219015f18d788d0c01c0bffee6b475bb07291a9
2015-07-03 08:39:43 +02:00

11 lines
147 B
Bash
Executable File

#!/bin/bash
SOURCE=""
TARGET=""
OWNER=""
if [[ -f "$SOURCE" ]]; then
cp $SOURCE $TARGET
chown ${OWNER}: $TARGET
chmod 0644 $TARGET
fi