1
0

fix (minor) inconsistences

This commit is contained in:
Konstantin Demin 2024-07-23 22:43:52 +03:00
parent 7425ac403a
commit 985c42a7d2
Signed by: krd
GPG Key ID: 4D56F87A8BA65FD0
2 changed files with 7 additions and 1 deletions

View File

@ -162,7 +162,7 @@ RUN find /etc/angie/ -name .gitkeep -delete ; \
## preseed builtin modules list
RUN x='angie-builtin-modules.sh' ; \
"$x" ; \
chmod a-x "$(which "$x")"
rm -fv "$(which "$x")"
## misc tools
RUN apt-install.sh \

View File

@ -25,6 +25,12 @@ done
[ -n "$p" ] || exit 0
dirs='cache lib log'
for n in ${dirs} ; do
d="/run/angie/$n"
[ -d "$d" ] || install -d "$d"
done
apt-install.sh $p
[ -d "$d" ] || install -d "$d"