Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
chore(user-data): change yaml content to literal block
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Monroy authored and Matthew Fisher committed Apr 15, 2014
1 parent be7a003 commit c08eaf8
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions contrib/coreos/user-data
Expand Up @@ -20,8 +20,17 @@ coreos:
WantedBy=sockets.target
- name: etcd.service
command: start
content: "[Unit]\nDescription=etcd\n\n[Service]\nUser=etcd\nPermissionsStartOnly=true\nEnvironment=ETCD_DATA_DIR=/var/lib/etcd
ETCD_NAME=default\nExecStart=/usr/bin/etcd \nRestart=always\nRestartSec=10s"
content: |
[Unit]
Description=etcd

[Service]
User=etcd
PermissionsStartOnly=true
Environment=ETCD_DATA_DIR=/var/lib/etcd ETCD_NAME=default
ExecStart=/usr/bin/etcd
Restart=always
RestartSec=10s
- name: fleet.service
command: start
content: |-
Expand Down

0 comments on commit c08eaf8

Please sign in to comment.