Commit 62760f01f959af7127969d79127b2827401b03ca
Committed by
Rodrigo Siqueira de Melo
1 parent
899805b6
Exists in
master
and in
79 other branches
Replaced mkdir and chown by install
Signed-off-by: Sergio Oliveira <sergio@tracy.com.br>
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
colab/colab.spec
... | ... | @@ -177,8 +177,7 @@ if [ -x /usr/bin/postgres ]; then |
177 | 177 | colab-admin migrate |
178 | 178 | fi |
179 | 179 | |
180 | -mkdir -p /var/lib/colab-assets | |
181 | -chown colab:colab /var/lib/colab-assets | |
180 | +install -d -m 0755 -o colab -g colab /var/lib/colab-assets | |
182 | 181 | |
183 | 182 | # If nginx is available serve assets using it |
184 | 183 | if [ -d /usr/share/nginx ]; then | ... | ... |