Skip to content

Commit

Permalink
Testing...
Browse files Browse the repository at this point in the history
  • Loading branch information
randalldegges-okta-2 committed Jun 7, 2011
1 parent 52c071f commit 77f9ab4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
5 changes: 1 addition & 4 deletions manifests/ctl/start_app.pp
Expand Up @@ -9,9 +9,6 @@
#
define rabbitmq::ctl::start_app() {

exec { "start_app":
command => "rabbitmqctl start_app",
path => "/usr/sbin",
}
exec { "start_app": command => "/usr/sbin/rabbitmqctl start_app" }

}
5 changes: 1 addition & 4 deletions manifests/ctl/stop.pp
Expand Up @@ -7,9 +7,6 @@
#
define rabbitmq::ctl::stop() {

exec { "stop":
command => "rabbitmqctl stop",
path => "/usr/sbin"
}
exec { "stop": command => "/usr/sbin/rabbitmqctl stop" }

}
5 changes: 1 addition & 4 deletions manifests/ctl/stop_app.pp
Expand Up @@ -9,9 +9,6 @@
#
define rabbitmq::ctl::stop_app() {

exec { "stop_app":
command => "rabbitmqctl stop_app",
path => "/usr/sbin",
}
exec { "stop_app": command => "/usr/sbin/rabbitmqctl stop_app" }

}

0 comments on commit 77f9ab4

Please sign in to comment.