blob: 2603f8a411fb186ddd3169ec0b605630e59bf12f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# See ovn-ic(8) for details about ovn-ic.
#
# To customize the ovn-ic-db service, you may create a configuration file
# in the /etc/systemd/system/ovn-ic-db.d/ directory. For example, to specify
# additional options to be passed to the "ovn-ctl start_ic_ovsdb" command, you
# could place the following contents in
# /etc/systemd/system/ovn-ic-db.d/local.conf:
#
# [System]
# Environment="OVN_IC_DB_OPTS=--db-ic-nb-create-insecure-remote=yes --db-ic-sb-create-insecure-remote=yes"
#
# Alternatively, you may specify environment variables in the file /etc/sysconfig/ovn-ic-db:
#
# OVN_IC_DB_OPTS="--db-ic-nb-create-insecure-remote=yes --db-ic-sb-create-insecure-remote=yes"
[Unit]
Description=OVN global (IC) northbound and southbound OVSDB servers
[Service]
Type=oneshot
RemainAfterExit=yes
Environment=OVN_RUNDIR=%t/ovn OVN_DBDIR=/var/lib/ovn
EnvironmentFile=-/etc/sysconfig/ovn
EnvironmentFile=-/etc/sysconfig/ovn-ic-db
ExecStartPre=-/usr/bin/chown -R ${OVN_USER_ID} ${OVN_DBDIR}
ExecStart=/usr/share/ovn/scripts/ovn-ctl \
--ovn-user=${OVN_USER_ID} start_ic_ovsdb $OVN_IC_DB_OPTS
ExecStop=/usr/share/ovn/scripts/ovn-ctl stop_ic_ovsdb
[Install]
WantedBy=multi-user.target
|