docker – Blame information for rev 62
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
62 | office | 1 | #!/usr/bin/with-contenv sh |
2 | # shellcheck shell=sh |
||
3 | |||
4 | echo "Fixing perms..." |
||
5 | mkdir -p /data/rtorrent \ |
||
6 | /data/rutorrent \ |
||
7 | /downloads \ |
||
8 | /passwd \ |
||
9 | /etc/nginx/conf.d \ |
||
10 | /etc/rtorrent \ |
||
11 | /var/cache/nginx \ |
||
12 | /var/lib/nginx \ |
||
13 | /var/log/nginx \ |
||
14 | /var/run/nginx \ |
||
15 | /var/run/php-fpm \ |
||
16 | /var/run/rtorrent |
||
17 | chown rtorrent:rtorrent \ |
||
18 | /data \ |
||
19 | /data/rtorrent \ |
||
20 | /data/rutorrent \ |
||
21 | /downloads |
||
22 | chown -R rtorrent:rtorrent \ |
||
23 | /etc/rtorrent \ |
||
24 | /passwd \ |
||
25 | /tpls \ |
||
26 | /var/cache/nginx \ |
||
27 | /var/lib/nginx \ |
||
28 | /var/log/nginx \ |
||
29 | /var/log/php83 \ |
||
30 | /var/run/nginx \ |
||
31 | /var/run/php-fpm \ |
||
32 | /var/run/rtorrent |