1
0
angie-conv-image/doc/examples/config-template/conf/image-entry/80-my-caches.envsh

13 lines
187 B
Plaintext
Raw Normal View History

2024-09-30 22:16:55 +03:00
#!/bin/sh
unset d
2024-10-01 09:09:35 +03:00
d="/angie/my-cache"
2024-09-30 22:16:55 +03:00
unset p
while read -r p ; do
[ -n "$p" ] || continue
[ -d "$d/$p" ] || install_userdir "$d/$p"
done < /etc/angie/site.d/my-caches.txt
unset d p