mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7cf1877098
Rename host_integration to host-integration for consistency
15 lines
289 B
Bash
Executable file
15 lines
289 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
cid="$1"
|
|
auth="$2"
|
|
desc="$3"
|
|
|
|
cat <<-EOF
|
|
description "$(echo "$desc" | sed 's/"/\\"/g')"
|
|
author "$(echo "$auth" | sed 's/"/\\"/g')"
|
|
start on filesystem and started lxc-net and started docker
|
|
stop on runlevel [!2345]
|
|
respawn
|
|
exec /usr/bin/docker start -a "$cid"
|
|
EOF
|