Skip to content

Commit 40c80ba

Browse files
authored
Merge pull request #63 from univ-of-utah-marriott-library-apple/minor-formatting-change
Small formatting changes in readme and jamf/config.py
2 parents e3b7df7 + 61c33f6 commit 40c80ba

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Originally, it was a "patch" project that was focused on patch management includ
1919

2020
The second project, `jctl`,  is a command-line tool that uses the `python-jamf` library to select objects to create, delete, print and update. It allows performing Jamf Pro repetitive tasks quickly and provides options not available in the web GUI. It is similar to SQL statements, but far less complex. And recently added [PyPi](https://pypi.org/project/https://pypi.org/project/jctl//) to support pip installation.
2121

22-
Please check out the [jctl github page](https://github.com/univ-of-utah-marriott-library-apple/jctl) for more information
22+
Please check out the [jctl github page](https://github.com/univ-of-utah-marriott-library-apple/jctl) for more information.
2323

2424
### Supported Jamf Records
2525

@@ -55,6 +55,7 @@ sudo pip3 uninstall python-jamf
5555
### Wiki
5656

5757
#### More Documentation
58+
5859
For further in-depth details please check out [the wiki](https://github.com/univ-of-utah-marriott-library-apple/python-jamf/wiki).
5960

6061
#### Searching the wiki
@@ -71,6 +72,6 @@ If you have additional questions, or need more help getting started, post a ques
7172

7273
## Latest Status
7374

74-
Since we recorded our session over a month ago, some of the information in our presentation is out of date already. We have spent the time between when we recorded the presentation and now (October 14, 2021) getting GitHub actions working so that it will test and publish to `pypi`. It took longer to get this working than we thought. So that's about where we are. But it works now. We also added some Docker containers that you can run locally to try out `python-jamf` and `jctl`. There are also some minor differences in `pkgctl` than what is shown in the presentation.
75+
Since we recorded our session over a month ago, some of the information in our presentation is out of date already. We have spent the time between when we recorded the presentation and now (October 14, 2021) getting GitHub actions working so that it will test and publish to pypi.com. It took longer to get this working than we thought. So that's about where we are. But it works now. We also added some Docker containers that you can run locally to try out `python-jamf` and `jctl`. There are also some minor differences in `pkgctl` than what is shown in the presentation.
7576

7677
I should also mention, one of us also had an issue where we assumed that `pkgctl` was crashing our production Jamf Pro server. But, increasing the amount of RAM and CPU's for that server fixed this issue.

jamf/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def __init__(
112112
if not self.hostname:
113113
self.hostname = prompt_hostname()
114114
if not self.username:
115-
self.username = input("username: ")
115+
self.username = input("Username: ")
116116
if not self.password:
117117
self.password = getpass.getpass()
118118
elif not self.hostname and not self.username and not self.password:

0 commit comments

Comments
 (0)