Last active
August 29, 2015 14:14
-
-
Save bcwaldon/0ff9ecc53a09220fc988 to your computer and use it in GitHub Desktop.
fleet.socket ListenStream drop-in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
coreos: | |
units: | |
- name: fleet.socket | |
command: start | |
drop-ins: | |
- name: 30-ListenStream.conf | |
content: | | |
[Socket] | |
ListenStream=127.0.0.1:49153 | |
- name: fleet.service | |
command: start |
@crawford thanks, fixed it
This didn't work for me, but based on this google groups post I removed the IP and only specified the port, and it worked:
- name: fleet.socket
command: start
drop-ins:
- name: 30-ListenStream.conf
content: |
[Socket]
ListenStream=49153
- name: fleet.service
command: start
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Your indentation is a bit off.