summaryrefslogtreecommitdiffstats
path: root/roles/docker_img_puppet/files/puppet_container/service.rb
diff options
context:
space:
mode:
authorThomas Wiest <twiest@users.noreply.github.com>2014-12-15 16:07:19 -0500
committerThomas Wiest <twiest@users.noreply.github.com>2014-12-15 16:07:19 -0500
commit9830202b133db241493ca3f3d914e1cb1de35963 (patch)
tree0bb33e5ee852ea533f1f808a8e86e38c97699bb4 /roles/docker_img_puppet/files/puppet_container/service.rb
parent2848232bdaed44fadb51548fe9d6c39fe89b8e11 (diff)
parent023f92f9e3eec7de6c1286549000be79189a4fde (diff)
downloadopenshift-9830202b133db241493ca3f3d914e1cb1de35963.tar.gz
openshift-9830202b133db241493ca3f3d914e1cb1de35963.tar.bz2
openshift-9830202b133db241493ca3f3d914e1cb1de35963.tar.xz
openshift-9830202b133db241493ca3f3d914e1cb1de35963.zip
Merge pull request #36 from twiest/pr
changed atomic proxy to use pre-built container images
Diffstat (limited to 'roles/docker_img_puppet/files/puppet_container/service.rb')
-rwxr-xr-xroles/docker_img_puppet/files/puppet_container/service.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/roles/docker_img_puppet/files/puppet_container/service.rb b/roles/docker_img_puppet/files/puppet_container/service.rb
deleted file mode 100755
index 40779c270..000000000
--- a/roles/docker_img_puppet/files/puppet_container/service.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env ruby
-
-require 'fileutils'
-
-if __FILE__ == $0
- abort "\nUsage: #{File.basename($0)} <name> <action>\n\n" unless ARGV.size == 2
-
- name = ARGV[0]
- action = ARGV[1]
-
- SERVICE_IPC_DIR = '/var/run/ctr-ipc/service'
-
- FileUtils.mkdir_p(SERVICE_IPC_DIR)
-
- File.open("#{SERVICE_IPC_DIR}/#{name}", 'w') do |f|
- f.print action
- end
-end