You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -175,14 +179,19 @@ Independent of which Git server you choose you will grab the webhook URL from yo
175
179
176
180
## Test Code Manager
177
181
178
-
One of the components setup by this control-repo is that when you "push" code to your Git server, the git server will inform the Puppet master to deploy branch you just pushed.
182
+
One of the components setup by this control-repo is that when you "push" code to your Git server, the git server will inform the Puppet master to deploy the branch you just pushed.
179
183
180
184
1. On your Puppet Master, `tail -f /var/log/puppetlabs/puppetserver/puppetserver.log`
181
185
2. On your laptop in a separate terminal window:
182
-
- Add a new file, `touch test_file`
183
-
- `git add test_file`
184
-
- `git commit -m "adding a test_file"`
185
-
- `git push origin production`
186
+
- Add a new file
187
+
188
+
~~~
189
+
touch test_file
190
+
git add test_file
191
+
git commit -m "adding a test_file"
192
+
git push origin production
193
+
~~~
194
+
186
195
3. Allow the push to complete and then wait a few seconds for everything to sync over
187
196
- On your Puppet Master, `ls -l /etc/puppetlabs/code/environments/production`
0 commit comments