aboutsummaryrefslogtreecommitdiff
path: root/manifests/role/yacy.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/role/yacy.pp')
-rw-r--r--manifests/role/yacy.pp34
1 files changed, 34 insertions, 0 deletions
diff --git a/manifests/role/yacy.pp b/manifests/role/yacy.pp
new file mode 100644
index 0000000..379297c
--- /dev/null
+++ b/manifests/role/yacy.pp
@@ -0,0 +1,34 @@
+class nodo::role::yacy inherits nodo::vserver {
+ class { 'onion': }
+
+ package { 'yacy':
+ ensure => installed,
+ }
+
+ service { 'yacy':
+ ensure => running,
+ require => Package['yacy'],
+ }
+
+ # Gracefully restart yacy everyday
+ cron { "yacy-restart":
+ command => "/etc/init.d/yacy restart > /dev/null 2>&1",
+ user => root,
+ hour => "*/4",
+ minute => "0",
+ ensure => present,
+ require => Service['yacy'],
+ }
+
+ tor::daemon::hidden_service { 'yacy':
+ ports => [ '8090 127.0.0.1:8090', '80 127.0.0.1:8090' ],
+ data_dir => "$tor::daemon::data_dir/hidden",
+ ensure => present,
+ }
+
+ # Why they don't sign their releases?
+ apt::sources_list { "yacy.net.list":
+ content => "deb http://debian.yacy.net ./\n",
+ ensure => absent,
+ }
+}