-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes to move telegraf out of /etc/opt #268
Conversation
Issue influxdata#264: This attempts to fix the /etc/opt and put the binary linked into /bin Note: I can't seem to find the right combination of packages for getting package.sh to run, so I haven't been able to test this.
@@ -95,7 +95,7 @@ function log_success_msg() { | |||
name=telegraf | |||
|
|||
# Daemon name, where is the actual executable | |||
daemon=/opt/telegraf/telegraf | |||
daemon=/bin/telegraf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/usr/bin/telegraf, then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, this should be /usr/bin
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, fixed.
@linsomniac please also edit the README with the new paths, thank you! |
Ahh, good point. Thanks, pushed changes. |
@@ -36,8 +36,8 @@ Latest: | |||
|
|||
##### Package instructions: | |||
|
|||
* Telegraf binary is installed in `/opt/telegraf/telegraf` | |||
* Telegraf daemon configuration file is in `/etc/opt/telegraf/telegraf.conf` | |||
* Telegraf binary is installed in `/usr/sbin/telegraf` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/usr/bin
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Argh, thanks! Sorry, distracted this afternoon. :-/
You also have to change paths in |
Done. |
cc @rossmcdonald FHS changes for Telegraf |
@linsomniac Is there a chance to update the branch so that it is in line with the latest? |
closing this in favor of #497 |
Issue #264: This attempts to fix the /etc/opt and put the binary
linked into /bin
Note: I can't seem to find the right combination of packages for
getting package.sh to run, so I haven't been able to test this.