update the osgi tests with new BROOKLYN-162 package prefix
Project: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/commit/8271ea7e Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/tree/8271ea7e Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/diff/8271ea7e Branch: refs/heads/0.8.0-incubating Commit: 8271ea7e447db4cdcc49957b40a4fc8588b890b0 Parents: 660f168 Author: Alex Heneveld <[email protected]> Authored: Thu Aug 20 14:40:38 2015 +0100 Committer: Alex Heneveld <[email protected]> Committed: Thu Aug 20 15:36:13 2015 +0100 ---------------------------------------------------------------------- .../yaml/example_yaml/vanilla-bash-netcat-w-client.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/8271ea7e/docs/guide/yaml/example_yaml/vanilla-bash-netcat-w-client.yaml ---------------------------------------------------------------------- diff --git a/docs/guide/yaml/example_yaml/vanilla-bash-netcat-w-client.yaml b/docs/guide/yaml/example_yaml/vanilla-bash-netcat-w-client.yaml index 747d5a5..d3eccbb 100644 --- a/docs/guide/yaml/example_yaml/vanilla-bash-netcat-w-client.yaml +++ b/docs/guide/yaml/example_yaml/vanilla-bash-netcat-w-client.yaml @@ -29,12 +29,12 @@ services: brooklyn.initializers: # two sensors, recording the data sent to this netcat server: - - type: brooklyn.entity.software.ssh.SshCommandSensor + - type: org.apache.brooklyn.core.sensor.ssh.SshCommandSensor brooklyn.config: name: output.last command: tail -1 server-input - - type: brooklyn.entity.software.ssh.SshCommandSensor + - type: org.apache.brooklyn.core.sensor.ssh.SshCommandSensor brooklyn.config: name: output.all command: cat server-input @@ -57,7 +57,7 @@ services: brooklyn.initializers: # but there is a sample effector which runs nc in client mode - - type: brooklyn.entity.software.ssh.SshCommandEffector + - type: org.apache.brooklyn.core.effector.ssh.SshCommandEffector brooklyn.config: name: sayHiNetcat description: Echo a small hello string to the netcat entity @@ -70,7 +70,7 @@ services: # and add an enricher at the root so all sensors from netcat-server are visible on the root brooklyn.enrichers: -- enricherType: brooklyn.enricher.basic.Propagator +- enricherType: org.apache.brooklyn.enricher.stock.Propagator brooklyn.config: enricher.producer: $brooklyn:component("netcat-server") enricher.propagating.propagatingAll: true
