@@ -28,7 +28,7 @@ Below is the current workflow that deploys the Git Page for the course:
2828
2929<div style =" text-align : center ;" >
3030
31- <img src =" ./assets/images/workflow.png " ></img >
31+ <img src =" ./assets/images/workflow.png " style = " border-radius : 2 % " ></img >
3232
3333</div >
3434
@@ -60,7 +60,7 @@ environments if things go awry.
6060< https://github.com/ProfessionalLinuxUsersGroup/psc/blob/main/src/assets/deploy/ansible-playbook.yml >
6161
6262To use this playbook, your machine(s)/containers must be configured correctly for Ansible.
63- If you don't know the requirements to administer and Ansible machine, documentation
63+ If you don't know the requirements to administer a machine via Ansible , documentation
6464has been provided below.
6565
6666<div class = warning >
@@ -79,7 +79,7 @@ Export and execute this script to your machine/container.
7979
8080<div class =warning >
8181
82- Dependencies can total over ~ 500MB compressed and 2GB unpackaged or more.
82+ Dependencies can total over ~ 500MB compressed and 1- 2GB unpackaged or more.
8383
8484Debian containers/machines will require building many of these packages from
8585source or adding additional repositories as Debian has a far slower package
@@ -138,16 +138,19 @@ From there you should be able to see any changes you have made are reflected.
138138
139139#### Or send commands over to a networked container or machine:
140140
141+ ** Note:** To minimize complexity and given the nature of commands over SSH, these
142+ commands will need to utilize absolute paths.
143+
141144``` bash
142145scp {working directory}/{targeted document} {TARGET_IP}:/root/psc/src/{targeted document}
143- ssh {TARGET_IP} " cd ~ /psc && ~/.cargo/bin/mdbook build -d /var/www/html && systemctl restart httpd"
146+ ssh {TARGET_IP} " cd /root /psc && ~/.cargo/bin/mdbook build -d /var/www/html && systemctl restart httpd"
144147```
145148
146149An example of the workflow after making changes:
147150
148151``` bash
149152scp src/development.md 172.16.15.8:/root/psc/src/
150- ssh 172.16.15.8 " cd ~ /psc && ~/.cargo/bin/mdbook build -d /var/www/html && systemctl restart httpd"
153+ ssh 172.16.15.8 " cd /root /psc && ~/.cargo/bin/mdbook build -d /var/www/html && systemctl restart httpd"
151154```
152155
153156<img src =" ./assets/images/flow.png " ></img >
0 commit comments