Skip to content

Commit cd9ee15

Browse files
committed
add config with no exists config
1 parent 5f869c1 commit cd9ee15

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

libioc/Config/Jail/Defaults.py

+34-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import libioc.Config.Jail.BaseConfig
3131

3232
DEFAULTS = libioc.Config.Data.Data({
33+
"CONFIG_VERSION": 17,
3334
"id": None,
3435
"release": None,
3536
"boot": False,
@@ -45,6 +46,7 @@
4546
"mac_prefix": "02ff60",
4647
"vnet": False,
4748
"interfaces": [],
49+
"vnet_default_interface": None,
4850
"vnet_interfaces": [],
4951
"ip4": "new",
5052
"ip4_saddrsel": 1,
@@ -55,24 +57,39 @@
5557
"resolver": "/etc/resolv.conf",
5658
"host_hostuuid": None,
5759
"host_hostname": None,
60+
"hostid": None,
61+
"hostid_strict_check": False,
5862
"host_domainname": None,
63+
"host_time": True,
5964
"devfs_ruleset": 4,
6065
"enforce_statfs": 2,
6166
"children_max": 0,
6267
"allow_set_hostname": 1,
6368
"allow_sysvipc": 0,
6469
"allow_raw_sockets": 0,
6570
"allow_chflags": 0,
71+
"allow_mlock": 0,
6672
"allow_mount": 0,
6773
"allow_mount_devfs": 0,
74+
"allow_mount_fusefs": 0,
6875
"allow_mount_nullfs": 0,
6976
"allow_mount_procfs": 0,
7077
"allow_mount_fdescfs": 0,
7178
"allow_mount_zfs": 0,
7279
"allow_mount_tmpfs": 0,
7380
"allow_quotas": 0,
7481
"allow_socket_af": 0,
82+
"allow_tun": 0,
7583
"allow_vmm": False,
84+
"available": 0,
85+
"bpf": None,
86+
"comment": None,
87+
"compression": None,
88+
"compressratio": None,
89+
"count": None,
90+
"cpuset": False,
91+
"dedup": False,
92+
"dhcp": False,
7693
"rlimits": None,
7794
"sysvmsg": "new",
7895
"sysvsem": "new",
@@ -86,22 +103,38 @@
86103
"exec_prestop": None,
87104
"exec_stop": "/bin/sh /etc/rc.shutdown",
88105
"exec_poststop": None,
106+
"exec_system_user": False,
89107
"exec_jail_user": "root",
108+
"exec_system_jail_user": False,
90109
"exec_timeout": "600",
91110
"stop_timeout": "30",
92111
"mount_procfs": "0",
93112
"mount_devfs": "1",
94113
"mount_fdescfs": "0",
114+
"mount_linprocfs": "0",
115+
"mountpoint": "0",
116+
"notes": None,
117+
"origin": None,
118+
"owner": None,
119+
"quota": None,
120+
"reservation": None,
121+
"rtsold": None,
122+
"sync_state": None,
123+
"sync_target": None,
124+
"sync_tgt_zpool": None,
95125
"securelevel": "2",
96126
"tags": [],
97127
"template": False,
128+
"used": False,
98129
"jail_zfs": False,
99130
"jail_zfs_dataset": None,
131+
"jail_zfs_mountpoint": None,
100132
"provision": {
101133
"method": None,
102134
"source": None,
103135
"rev": "master"
104-
}
136+
},
137+
"last_started": None
105138
})
106139

107140

0 commit comments

Comments
 (0)