Skip to content

Commit deb7dcf

Browse files
committed
add config with no exists config
1 parent ac61b44 commit deb7dcf

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

Diff for: libioc/Config/Jail/Defaults.py

+35-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,23 +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,
83+
"allow_vmm": 0,
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,
7593
"rlimits": None,
7694
"sysvmsg": "new",
7795
"sysvsem": "new",
@@ -85,22 +103,38 @@
85103
"exec_prestop": None,
86104
"exec_stop": "/bin/sh /etc/rc.shutdown",
87105
"exec_poststop": None,
106+
"exec_system_user": False,
88107
"exec_jail_user": "root",
108+
"exec_system_jail_user": False,
89109
"exec_timeout": "600",
90110
"stop_timeout": "30",
91111
"mount_procfs": "0",
92112
"mount_devfs": "1",
93113
"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,
94125
"securelevel": "2",
95126
"tags": [],
96127
"template": False,
128+
"used": False,
97129
"jail_zfs": False,
98130
"jail_zfs_dataset": None,
131+
"jail_zfs_mountpoint": None,
99132
"provisioning": {
100133
"method": None,
101134
"source": None,
102135
"rev": "master"
103-
}
136+
},
137+
"last_started": None
104138
})
105139

106140

0 commit comments

Comments
 (0)