summaryrefslogtreecommitdiff
path: root/lib/oxidized/hook
AgeCommit message (Collapse)Author
2018-04-27Merge pull request #1315 from wk/potato-potatoytti
transition from TimeoutError to Timeout::Error
2018-04-27transition from TimeoutError to Timeout::ErrorWild Kat
2018-04-27bring ciscosparkdiff.rb back into compliance with rubocopWild Kat
2018-04-27Merge remote-tracking branch 'upstream/master' into pr-1280Wild Kat
2018-04-25fine tune rubocop to yttis exacting specificationsWild Kat
2018-04-21the great makeover - standardize layout, alignment, indentationWild Kat
2018-04-16restructure awssns.rb to comply with rubocopWild Kat
2018-04-16Merge branch 'master' into refactor-slackdiffWild Kat
2018-04-15restructure slackdiff.rb to comply with rubocopWild Kat
2018-04-15restructure xmppdiff.rb to comply with rubocopWild Kat
2018-04-15massage into rubocop complianceWild Kat
2018-04-12fix formatting to comply with Rubocoprgnv
2018-04-12Added Cisco Spark hookrgnv
2018-04-06expose username in debug logWild Kat
2018-04-06refactor githubrepo credential handlingWild Kat
2018-03-11Introduce support for OXIDIZED_SSH_PASSPHRASEWild Kat
2018-01-25fix: Don't post diff to Slack if there are no diffs (#1151)Adam Smith
2017-11-20feature: Added model information to exec hook (#1105)pv2b
* Add OX_NODE_MODEL to exec hook * Update docs to reflect added OX_NODE_MSG to hook
2017-11-09feature: Slack hook - optionally disable diff snippets and post custom ↵Nat Morris
messages (#763) * continue to diffs by default, but optionally post formatted messages * updated readme * remove static channel name * Update Hooks.md
2017-11-08feature: Added hook for XMPP MUC (#951)mortzu
* Added hook for XMPP MUC * Updated dockerfile * Added timeout to prevent oxidized to stop on XMPP error * Updated README
2017-08-08remove duplicated hook env variableDanilo Sousa
2017-05-11Added OX_NODE_IP for hook type: execBenedikt Heumüller
Added OX_NODE_IP to access the IP address for exec commands.
2017-04-05Update slackdiff.rbSten Spans
Add proxy option to slackdiff hook
2017-02-16slackdiff hook to post colourized diffs to a Slack channelNat Morris
2016-12-04New hook: awssns - Publish messages to AWS SNS topicsNat Morris
2016-02-25Changed configuration item namesawlx
2016-02-25Removed unnecessary repetitionawlx
2016-02-25Added support for SSH Key usage and ssh-agent-forwardingawlx
2016-02-19refactor `#remote_repo` to not rely on `#single_repo?` configDanilo Sousa
even in the case we have groups, we can assume is only one repository if the `remote_repo` config is a String.
2016-02-19move the groups remote to the hook configDanilo Sousa
thanks to @ElvinEfendi for the idea! :+1:
2016-02-19fix 'GithubRepo#single_repo?' private methodDanilo Sousa
2016-02-18create tests for `GithubRepo#validate_cfg!` methodDanilo Sousa
2016-02-18fix `githubrepo` hook for groups repositories remotesDanilo Sousa
when there was a repository per group we could not use the hook for pushing since we only had **one** remote configured. This PR configures each repository its own remote based in the `groups` config, as follows: ``` --- groups: first: remote_repo: git@gitlab.lab:oxidized/first.git second: remote_repo: git@gitlab.lab:oxidized/second.git ```
2016-01-04Merge remote-tracking branch 'upstream/master' into merge-upstreamElvin Efendi
2015-12-27expose git repo name and commit oid in hook mechanism and environment variablesNick Hilliard
2015-12-13do not commit when there is no diffElvin Efendi
2015-12-13let user configure which auth method to useElvin Efendi
2015-12-08warn when there is a conflictElvin Efendi
2015-12-07pull origin/master before pushingElvin Efendi
2015-12-04consider local repo mainElvin Efendi
2015-12-04user password username for github apiElvin Efendi
2015-11-13githubrepo hook specElvin Efendi
2015-11-13do not rescue general exceptionElvin Efendi
2015-11-13raise more specific exception when required key is not presentElvin Efendi
2015-11-13a callback to push config changes to a remote repositoryElvin Efendi
2015-09-17restore ruby 1.9.3 compatibility0.8.1Saku Ytti
fix some whitespaces bump up gemspec version
2015-08-28Initial implementation of the hook featureAnton Aksola
The current implementation is modular and allows users to define hooks in several ways: * Use one of the built-in hook types (currently only 'exec') * Define their own Hook classes inside ~/.config/oxidized/hook Exec hook type runs a user defined command with or without shell. It populates a bunch of environment variables with metadata. The command can either be run as synchronous or asynchronous. The default is synchronous.