Revert "Add puppet/archive module"
[mirror/dsa-puppet.git] / 3rdparty / modules / archive / examples / tomcat.pp
diff --git a/3rdparty/modules/archive/examples/tomcat.pp b/3rdparty/modules/archive/examples/tomcat.pp
deleted file mode 100644 (file)
index a29c758..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-$dirname = 'apache-tomcat-9.0.0.M3'
-$filename = "${dirname}.zip"
-$install_path = "/opt/${dirname}"
-
-user { 'tomcat':
-  ensure => present,
-  gid    => 'tomcat',
-}
-
-group { 'tomcat':
-  ensure => present,
-}
-
-file { '/opt/tomcat':
-  ensure => 'link',
-  target => $install_path,
-}
-
-file { $install_path:
-  ensure => directory,
-  owner  => 'tomcat',
-  group  => 'tomcat',
-  mode   => '0755',
-}
-
-archive { $filename:
-  path          => "/tmp/${filename}",
-  source        => 'http://www-eu.apache.org/dist/tomcat/tomcat-9/v9.0.0.M3/bin/apache-tomcat-9.0.0.M3.zip',
-  checksum      => 'f2aaf16f5e421b97513c502c03c117fab6569076',
-  checksum_type => 'sha1',
-  extract       => true,
-  extract_path  => '/opt',
-  creates       => "${install_path}/bin",
-  cleanup       => true,
-  user          => 'tomcat',
-  group         => 'tomcat',
-  require       => File[$install_path],
-}