-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.sh
executable file
·23 lines (18 loc) · 1.02 KB
/
deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
cp jaaps_povray.pl /var/www/localhost/cgi-bin/
cp *.inc /var/www/localhost/htdocs/render_data/
cp render_*.txt /var/www/localhost/htdocs/render_data/
cp render_*.sh /var/www/localhost/htdocs/render_data/
cp render_*.png /var/www/localhost/htdocs/render_data/
chown apache:apache /var/www/localhost/cgi-bin/jaaps_povray.pl
chmod 555 /var/www/localhost/cgi-bin/jaaps_povray.pl
chown apache:apache /var/www/localhost/htdocs/render_data/*.sh
chown apache:apache /var/www/localhost/htdocs/render_data/*.inc
chown apache:apache /var/www/localhost/htdocs/render_data/*.txt
chown apache:apache /var/www/localhost/htdocs/render_data/render_cone_apex.png
chown apache:apache /var/www/localhost/htdocs/render_data/render_cone_clipping.png
chmod 555 /var/www/localhost/htdocs/render_data/*.sh
chmod 444 /var/www/localhost/htdocs/render_data/*.inc
chmod 444 /var/www/localhost/htdocs/render_data/*.txt
chmod 444 /var/www/localhost/htdocs/render_data/render_cone_apex.png
chmod 444 /var/www/localhost/htdocs/render_data/render_cone_clipping.png