Skip to content

Commit

Permalink
examples/kubernetes: adding missing \ in ExecStartPre
Browse files Browse the repository at this point in the history
Signed-off-by: André Martins <andre@cilium.io>
  • Loading branch information
aanm authored and tgraf committed Mar 14, 2017
1 parent 909b4fa commit 0e3b7ec
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ After=docker.service
Requires=docker.service
[Service]
ExecStartPre=/bin/bash -c ' \
if [[ $(/bin/mount | /bin/grep /sys/fs/bpf -c) -eq 0 ]]; then \
/bin/mount bpffs /sys/fs/bpf -t bpf; \
ExecStartPre=/bin/bash -c ' \\
if [[ \$(/bin/mount | /bin/grep /sys/fs/bpf -c) -eq 0 ]]; then \\
/bin/mount bpffs /sys/fs/bpf -t bpf; \\
fi'
ExecStart=/usr/bin/kubelet \\
--allow-privileged=true \\
Expand Down

0 comments on commit 0e3b7ec

Please sign in to comment.