aboutsummaryrefslogtreecommitdiffstats
path: root/modules/django_application/manifests/script.pp
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-03-24 15:27:19 +0000
committerMichael Scherer <misc@mageia.org>2012-03-24 15:27:19 +0000
commit1b9c7ba2b996a03d9addd83ffd96426fd25f7ecd (patch)
treecc1fdca186dc53e75f7a6ada579c70ba130d932f /modules/django_application/manifests/script.pp
parent84dfd9dd945db45dacc186cf7517b8746d743c55 (diff)
downloadpuppet-1b9c7ba2b996a03d9addd83ffd96426fd25f7ecd.tar
puppet-1b9c7ba2b996a03d9addd83ffd96426fd25f7ecd.tar.gz
puppet-1b9c7ba2b996a03d9addd83ffd96426fd25f7ecd.tar.bz2
puppet-1b9c7ba2b996a03d9addd83ffd96426fd25f7ecd.tar.xz
puppet-1b9c7ba2b996a03d9addd83ffd96426fd25f7ecd.zip
split and clean the django_application module
Diffstat (limited to 'modules/django_application/manifests/script.pp')
-rw-r--r--modules/django_application/manifests/script.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/django_application/manifests/script.pp b/modules/django_application/manifests/script.pp
new file mode 100644
index 00000000..96179c96
--- /dev/null
+++ b/modules/django_application/manifests/script.pp
@@ -0,0 +1,9 @@
+define django_application::script() {
+ file { $name:
+ path => "/usr/local/bin/$name",
+ mode => '0755',
+ source => "puppet:///modules/django_application/$name",
+ }
+}
+
+