Skip to content
Snippets Groups Projects
Commit 6b4e726b authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Remove duplicate code in nova extend_start.sh"

parents 5bf932c7 ede53b1d
No related branches found
No related tags found
No related merge requests found
...@@ -17,8 +17,8 @@ RUN apt-get install -y --no-install-recommends \ ...@@ -17,8 +17,8 @@ RUN apt-get install -y --no-install-recommends \
{% endif %} {% endif %}
{% endif %} {% endif %}
COPY extend_start.sh /usr/local/bin/kolla_extend_start COPY extend_start.sh /usr/local/bin/kolla_nova_extend_start
RUN chmod 755 /usr/local/bin/kolla_extend_start RUN chmod 755 /usr/local/bin/kolla_nova_extend_start
{{ include_footer }} {{ include_footer }}
......
#!/bin/bash #!/bin/bash
if [[ ! -d "/var/log/kolla/nova" ]]; then
mkdir -p /var/log/kolla/nova
fi
if [[ $(stat -c %a /var/log/kolla/nova) != "755" ]]; then
chmod 755 /var/log/kolla/nova
fi
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases # Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
# of the KOLLA_BOOTSTRAP variable being set, including empty. # of the KOLLA_BOOTSTRAP variable being set, including empty.
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
......
...@@ -56,6 +56,8 @@ RUN chmod 750 /etc/sudoers.d \ ...@@ -56,6 +56,8 @@ RUN chmod 750 /etc/sudoers.d \
{% endif %} {% endif %}
COPY extend_start.sh /usr/local/bin/kolla_extend_start COPY extend_start.sh /usr/local/bin/kolla_extend_start
RUN chmod 755 /usr/local/bin/kolla_extend_start
RUN touch /usr/local/bin/kolla_nova_extend_start \
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_nova_extend_start
RUN usermod -a -G kolla nova RUN usermod -a -G kolla nova
...@@ -6,3 +6,5 @@ fi ...@@ -6,3 +6,5 @@ fi
if [[ $(stat -c %a /var/log/kolla/nova) != "755" ]]; then if [[ $(stat -c %a /var/log/kolla/nova) != "755" ]]; then
chmod 755 /var/log/kolla/nova chmod 755 /var/log/kolla/nova
fi fi
source /usr/local/bin/kolla_nova_extend_start
...@@ -52,8 +52,8 @@ RUN /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements ...@@ -52,8 +52,8 @@ RUN /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements
{% endif %} {% endif %}
COPY nova_compute_sudoers /etc/sudoers.d/nova_compute_sudoers COPY nova_compute_sudoers /etc/sudoers.d/nova_compute_sudoers
COPY extend_start.sh /usr/local/bin/kolla_extend_start COPY extend_start.sh /usr/local/bin/kolla_nova_extend_start
RUN chmod 755 /usr/local/bin/kolla_extend_start \ RUN chmod 755 /usr/local/bin/kolla_nova_extend_start \
&& chmod 750 /etc/sudoers.d \ && chmod 750 /etc/sudoers.d \
&& chmod 440 /etc/sudoers.d/nova_compute_sudoers \ && chmod 440 /etc/sudoers.d/nova_compute_sudoers \
&& rm -f /etc/machine-id && rm -f /etc/machine-id
......
#!/bin/bash #!/bin/bash
if [[ ! -d "/var/log/kolla/nova" ]]; then
mkdir -p /var/log/kolla/nova
fi
if [[ $(stat -c %a /var/log/kolla/nova) != "755" ]]; then
chmod 755 /var/log/kolla/nova
fi
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases # Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
# of the KOLLA_BOOTSTRAP variable being set, including empty. # of the KOLLA_BOOTSTRAP variable being set, including empty.
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
......
...@@ -30,8 +30,8 @@ RUN apt-get install -y --no-install-recommends \ ...@@ -30,8 +30,8 @@ RUN apt-get install -y --no-install-recommends \
{% endif %} {% endif %}
COPY extend_start.sh /usr/local/bin/kolla_extend_start COPY extend_start.sh /usr/local/bin/kolla_nova_extend_start
RUN chmod 755 /usr/local/bin/kolla_extend_start \ RUN chmod 755 /usr/local/bin/kolla_nova_extend_start \
&& useradd --user-group nova && useradd --user-group nova
{{ include_footer }} {{ include_footer }}
\ No newline at end of file
...@@ -12,10 +12,3 @@ fi ...@@ -12,10 +12,3 @@ fi
if [[ $(lsmod | grep xenfs) ]]; then if [[ $(lsmod | grep xenfs) ]]; then
mount -t xenfs xenfs /proc/xen mount -t xenfs xenfs /proc/xen
fi fi
if [[ ! -d "/var/log/kolla/nova" ]]; then
mkdir -p /var/log/kolla/nova
fi
if [[ $(stat -c %a /var/log/kolla/nova) != "755" ]]; then
chmod 755 /var/log/kolla/nova
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment