diff options
author | Tom Gundersen <teg@jklm.no> | 2014-02-21 14:51:19 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-02-21 16:05:02 +0100 |
commit | edbb03e95a3c31bf719d5c6c46eec14d0bcb9c8f (patch) | |
tree | 5f9756ff846f5ed38cea48e5f5060376ed11b769 /src/network/networkd.h | |
parent | 7a243b22041595a0c7e0dffb3ef5e2158dde933f (diff) |
.network/.netdev/.link: allow to match on architecture
Diffstat (limited to 'src/network/networkd.h')
-rw-r--r-- | src/network/networkd.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/network/networkd.h b/src/network/networkd.h index 8008df5a79..fb0976491c 100644 --- a/src/network/networkd.h +++ b/src/network/networkd.h @@ -71,9 +71,10 @@ struct NetDev { char *filename; - Condition *condition_host; - Condition *condition_virt; - Condition *condition_kernel; + Condition *match_host; + Condition *match_virt; + Condition *match_kernel; + Condition *match_arch; char *description; char *name; @@ -100,6 +101,7 @@ struct Network { Condition *match_host; Condition *match_virt; Condition *match_kernel; + Condition *match_arch; char *description; NetDev *bridge; |