add jails dependencies

This commit is contained in:
Jörg Thalheim 2015-01-24 00:45:42 +00:00
parent b40eed619a
commit 9aa727fe91
3 changed files with 13 additions and 0 deletions

View File

@ -17,6 +17,9 @@
]
},
"default_jail_conf": {
"provide": "standard_ezjail",
"require": [],
"before": [],
"exec_start": "/bin/sh /etc/rc",
"exec_stop": null,
"hostname": "%{name}",

View File

@ -111,6 +111,9 @@ class JailRegistry < Registry
def default_jail_conf
{
"provide" => "standard_ezjail",
"require" => [],
"before" => [],
"exec_start" => "/bin/sh /etc/rc",
"exec_stop" => nil,
"hostname" => "%{name}",

View File

@ -1,4 +1,11 @@
# THIS FILE WAS GENERATED, CHANGES WILL BE OVERWRITTEN
#
# PROVIDE: <%= provide %>
# REQUIRE: <%= require_.join(" ") %>
# BEFORE: <%= before.join(" ") %>
#
<% properties.each do |property,value| -%>
export jail_<%= name %>_<%= property %>=<%= value %>
<% end -%>