Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
adworjan committed Dec 1, 2023
1 parent 2a9610b commit f4ad051
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .ansible-sign/sha256sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ e7282f4ae9f746f2f962f83e8362230b5796e3cecd1b7d7320a9cb024eb4c0d9 roles/build_sh
dfc5b5bd8bca161bb5eb0070a57368a51aabe34f27a1265ce3b7051ea3fa0268 roles/build_shadowmande/templates/execution-environment.yml.j2
6f273601ee34e1968ff8708287f00723f16152ced76b9494d4d2bf312a5ead80 roles/build_shadowmande/templates/requirements.txt.j2
f46e5f6f46cb53820c812cec1a28a59825476c846d13f65fda8dde4105087f3a roles/build_shadowmande/templates/requirements.yml.j2
4e180eb40acce179c22aefee9817c29efc6308370960206dbed4e2c09cb92aa8 roles/build_shadowmandevspaces/defaults/main.yml
b6a3b7666f478ca59615f685d79011d242b3bb2e4021527bbc9aab73be898f66 roles/build_shadowmandevspaces/defaults/main.yml
b3e28a736267063aab070e2bbd0d38da5d889d9ea16844968395e54f62b2ae4f roles/build_shadowmandevspaces/tasks/main.yml
e78d092fe7df758f58cada57dfd2c97fadcc8dfbdc85f94db62c7b2742c3e5f7 roles/build_shadowmandevspaces/templates/.bashrc.j2
9ba220badf4c14eb524d3ddcec9474e329147c880e50c14d5899367178613e33 roles/build_shadowmandevspaces/templates/ansible.cfg.j2
Expand Down
22 changes: 11 additions & 11 deletions .ansible-sign/sha256sum.txt.sig
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
-----BEGIN PGP SIGNATURE-----

iQGzBAABCAAdFiEE/bJvyFHKKJdaZDOLTiIiIXrUDNEFAmVqDGoACgkQTiIiIXrU
DNFqqwwAlpIW0zulY6dC1QXIp182UWrDSiWuOs+YmI+QkTdE1jTSlO3w1kznj5GB
ocmtH3HLYP+niRpXB1urY30ob2jv/qKlMfrDEgNaMzuHTa5lRQTMfgBm/TYxDPT3
GhTWdwajOUNMDiiS0yFzV1EsFYJ9MC4CU/cg8NGITCzUxtn6Uoy/1rIfghtDYkym
g9xwHEsO/tpO1kov+qajTO4PzWWJnE7KC4Zz4VB26CnVgll6Zjem3GITyDcbmL8F
9nYscEcm2BLD7XKYlxZfFeTMWoJ/w7Ekp9sG0Gbqcqlu76uqCm6LJx345Pt5QTHB
UQ0JO5dA5VshDOEEzXl6T89CG9Yfsio9TZl7fNTvwxwJ+3RDEOKuD0Ed1vujrD86
u3EOBToee9jB+/5S+gml9llhYlGn3MGRtioTQ/lL+4t1zddj362o3lu22WYiWkQy
LZRDt2000Iww2qmrTDAmOIj78JBTMTIUf2er/rS2sCpxkq2CuG//OgWOn4Qr7EkK
EJLlpyn5
=fbvP
iQGzBAABCAAdFiEE/bJvyFHKKJdaZDOLTiIiIXrUDNEFAmVqEO4ACgkQTiIiIXrU
DNGHiwwAmDpFQ0slt27pBin2lC1S+iXRXd0FphoPGvaLDURmS6/jm0ZBL9rp+Llr
mRLP+LCVs4iCTSyEu5g8TiFwhTmujWLKfJngPvWMRHpnCCBJtYI6GV/7suNaJQIe
HH1aM6ogzCkN1vWrg5gslQsd4koKI/Dtq+Ue3E9+UyHYktf+YieVNuSx1e3B8cUc
vs+6aMg+ZS5gxoZKbeX77YhUHzGX/BX5zo0+Em8MT3yFFkrumbYFrWmCQEn7G76O
Prcu4RktAQ2ptiJDj4CX7R4jKpSWVy29WzFZKXDoPxIwspY5a2m5P2a2KiIgFoex
NCUrczZkdNpe4qpoNGaMzok4R9pPK12rSIXZHtEqeCKJYcFjmlzhIv2uq66mG8cq
1OOZETy8/UXY51FsmRyWMWCNeOPLtfwMhq9yq7jSdBwCAEBUeerkU5PI7PPBI9zI
ZJcU63Ji7xhtrEktnfy1m7dahwhWgcct6Kvuma1/nJmxcjUfAwE3BrUkE6H+1ToD
+YA2ynyZ
=StYc
-----END PGP SIGNATURE-----
3 changes: 3 additions & 0 deletions roles/build_shadowmandevspaces/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ ee_append_final:
- RUN rm -f /etc/ansible/ansible.cfg
- RUN microdnf clean all
- RUN dnf clean all
# Provide shell and bash set up for the workspace
- COPY _build/configs/shells /etc/shells
- COPY _build/configs/.bashrc /home/runner/.bashrc
- RUN printf "export CONTAINER_NAME=ansibleee\n" >> /home/runner/.bashrc
# In OpenShift, container will run as a random uid number and gid 0. Make sure things
# are writeable by the root group.
- RUN for dir in /home/runner /home/runner/.ansible /home/runner/.ansible/tmp /runner /home/runner /runner/env /runner/inventory /runner/project /runner/artifacts ; do mkdir -m 0775 -p $dir ; chmod -R g+rwx $dir ; chgrp -R root $dir ; done && for file in /home/runner/.ansible/galaxy_token /etc/passwd /etc/group ; do touch $file ; chmod g+rw $file ; chgrp root $file ; done # noqa yaml[line-length]

0 comments on commit f4ad051

Please sign in to comment.