Skip to content

Commit 8ef8696

Browse files
committed
add config with no exists config
1 parent 358753a commit 8ef8696

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

libioc/Config/Jail/Defaults.py

+32-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,
@@ -56,6 +58,7 @@
5658
"host_hostuuid": None,
5759
"host_hostname": None,
5860
"host_domainname": None,
61+
"host_time": True,
5962
"hostid": None,
6063
"hostid_strict_check": False,
6164
"devfs_ruleset": 4,
@@ -65,16 +68,28 @@
6568
"allow_sysvipc": 0,
6669
"allow_raw_sockets": 0,
6770
"allow_chflags": 0,
71+
"allow_mlock": 0,
6872
"allow_mount": 0,
6973
"allow_mount_devfs": 0,
74+
"allow_mount_fusefs": 0,
7075
"allow_mount_nullfs": 0,
7176
"allow_mount_procfs": 0,
7277
"allow_mount_fdescfs": 0,
7378
"allow_mount_zfs": 0,
7479
"allow_mount_tmpfs": 0,
7580
"allow_quotas": 0,
7681
"allow_socket_af": 0,
82+
"allow_tun": 0,
7783
"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,
7893
"rlimits": None,
7994
"sysvmsg": "new",
8095
"sysvsem": "new",
@@ -88,22 +103,38 @@
88103
"exec_prestop": None,
89104
"exec_stop": "/bin/sh /etc/rc.shutdown",
90105
"exec_poststop": None,
106+
"exec_system_user": False,
91107
"exec_jail_user": "root",
108+
"exec_system_jail_user": False,
92109
"exec_timeout": "600",
93110
"stop_timeout": "30",
94111
"mount_procfs": "0",
95112
"mount_devfs": "1",
96113
"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,
97125
"securelevel": "2",
98126
"tags": [],
99127
"template": False,
128+
"used": False,
100129
"jail_zfs": False,
101130
"jail_zfs_dataset": None,
131+
"jail_zfs_mountpoint": None,
102132
"provision": {
103133
"method": None,
104134
"source": None,
105135
"rev": "master"
106-
}
136+
},
137+
"last_started": None
107138
})
108139

109140

0 commit comments

Comments
 (0)