mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-27 07:48:55 +00:00
Merge pull request #2585 from Bevisy/main-2584
osbuilder: Change to "=" operator to make script more portable
This commit is contained in:
commit
f28e6e506f
@ -27,7 +27,7 @@ PACKAGES="iptables chrony"
|
|||||||
#Optional packages:
|
#Optional packages:
|
||||||
# systemd: An init system that will start kata-agent if kata-agent
|
# systemd: An init system that will start kata-agent if kata-agent
|
||||||
# itself is not configured as init process.
|
# itself is not configured as init process.
|
||||||
[ "$AGENT_INIT" == "no" ] && PACKAGES+=" systemd" || true
|
[ "$AGENT_INIT" = "no" ] && PACKAGES+=" systemd" || true
|
||||||
|
|
||||||
# Init process must be one of {systemd,kata-agent}
|
# Init process must be one of {systemd,kata-agent}
|
||||||
INIT_PROCESS=systemd
|
INIT_PROCESS=systemd
|
||||||
|
@ -20,7 +20,7 @@ PACKAGES="libudev0-shim kmod-bin"
|
|||||||
#Optional packages:
|
#Optional packages:
|
||||||
# systemd: An init system that will start kata-agent if kata-agent
|
# systemd: An init system that will start kata-agent if kata-agent
|
||||||
# itself is not configured as init process.
|
# itself is not configured as init process.
|
||||||
[ "$AGENT_INIT" == "no" ] && PACKAGES+=" systemd chrony iptables-bin util-linux-bin" || true
|
[ "$AGENT_INIT" = "no" ] && PACKAGES+=" systemd chrony iptables-bin util-linux-bin" || true
|
||||||
|
|
||||||
# Init process must be one of {systemd,kata-agent}
|
# Init process must be one of {systemd,kata-agent}
|
||||||
INIT_PROCESS=systemd
|
INIT_PROCESS=systemd
|
||||||
|
@ -14,7 +14,7 @@ PACKAGES="iptables chrony"
|
|||||||
#Optional packages:
|
#Optional packages:
|
||||||
# systemd: An init system that will start kata-agent if kata-agent
|
# systemd: An init system that will start kata-agent if kata-agent
|
||||||
# itself is not configured as init process.
|
# itself is not configured as init process.
|
||||||
[ "$AGENT_INIT" == "no" ] && PACKAGES+=" systemd" || true
|
[ "$AGENT_INIT" = "no" ] && PACKAGES+=" systemd" || true
|
||||||
|
|
||||||
# Init process must be one of {systemd,kata-agent}
|
# Init process must be one of {systemd,kata-agent}
|
||||||
INIT_PROCESS=systemd
|
INIT_PROCESS=systemd
|
||||||
|
Loading…
Reference in New Issue
Block a user