mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0252ad0adc
The validation script from #10681 is too pedantic, and does not handle
well situations like:
```
cat <<EOF # or <<-EOF
Whether the leading whitespace is stripped out or not by bash
it should still be considered as valid.
EOF
```
This reverts commit 4e65c1c319
.
Signed-off-by: Tibor Vass <tibor@docker.com>
20 lines
257 B
Bash
Executable file
20 lines
257 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
cid="$1"
|
|
auth="$2"
|
|
desc="$3"
|
|
|
|
cat <<-EOF
|
|
[Unit]
|
|
Description=$desc
|
|
Author=$auth
|
|
After=docker.service
|
|
|
|
[Service]
|
|
ExecStart=/usr/bin/docker start -a $cid
|
|
ExecStop=/usr/bin/docker stop -t 2 $cid
|
|
|
|
[Install]
|
|
WantedBy=local.target
|
|
EOF
|