Skip to content

Commit 1f7e396

Browse files
authored
Merge pull request #52 from magnusviri/main
Version 0.6.5; Added subcommand hooks for jctl, added subcommands: co…
2 parents 9c825cd + 15a080e commit 1f7e396

File tree

4 files changed

+466
-177
lines changed

4 files changed

+466
-177
lines changed

jamf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
from . import convert
1212
from .records import *
1313
from .setconfig import setconfig
14-
__version__ = "0.6.4"
14+
__version__ = "0.6.5"

jamf/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,16 @@ def __init__(self,
9090
fptr.close()
9191
if 'JSSHostname' in prefs:
9292
if 'Credentials' in prefs:
93-
cmessage = """
93+
cmessage = f"""
9494
ATTENTION
9595
To improve security with storing credentials used with the jctl tool, we have
9696
deprecated the use of a property list file for storing configuration
9797
information and have migrated to use the Python keyring library provides an
9898
easy way to access the system keyring service from python. It can be used with
9999
the macOS Keychain and Linux KWallet.
100100
101-
Please delete the the configuration at "+config_path+" and recreate it using
102-
the "setconfig.py" command.
101+
Please delete the the configuration at {config_path} and recreate it using
102+
the "./jamf/setconfig.py" script.
103103
"""
104104
print(cmessage)
105105
exit(1)

0 commit comments

Comments
 (0)