Skip to content

Commit

Permalink
2.1.5
Browse files Browse the repository at this point in the history
Corrects issue reporting no existing firmware password (#6), corrects poorly chosen version numbers.
  • Loading branch information
lazymutt committed Apr 9, 2019
1 parent 27e72d2 commit 0f652f5
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 University of Utah, Marriott Library, Apple Support
Copyright (c) 2019 University of Utah, Marriott Library, Client Platform Services

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Firmware Password Manager 2.1.4
# Firmware Password Manager 2.1.5

A Python script to help Macintosh administrators manage the firmware passwords of their computers.

Expand Down Expand Up @@ -259,7 +259,8 @@ Thank you to macmule for <http://macmule.com/2014/05/11/ea-check-efi-password-st

Date | Version | Notes
-------|-----------|-------
2017.10.23 | 2.1.4 | using rm -P for secure delete, added additional alerting, additional pylint cleanup.
2019.10.23 | 2.1.5 | Corrected issue reporting no existing firmware password.
2017.10.23 | 2.1.4 | Using rm -P for secure delete, added additional alerting, additional pylint cleanup.
2016.03.16 | 2.1.2 | Cleaned up argparse, removed obsolete flag logic.
2016.03.16 | 2.1.1 | Slack identifier flag, logic clarifications.
2016.03.07 | 2.1.0 | Obfuscation, reboot flag, bug fixes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Copyright (c) 2016 University of Utah Student Computing Labs. ################
# All Rights Reserved.
# Copyright (c) 2019 University of Utah, Marriott Library, #####################
# Client Platform Services. All Rights Reserved.
#
# Permission to use, copy, modify, and distribute this software and
# its documentation for any purpose and without fee is hereby granted,
Expand Down
4 changes: 2 additions & 2 deletions example scripts/remotely_set_firmpwarepassword_scp_keylist.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python

# Copyright (c) 2016 University of Utah Student Computing Labs. ################
# All Rights Reserved.
# Copyright (c) 2019 University of Utah, Marriott Library, #####################
# Client Platform Services. All Rights Reserved.
#
# Permission to use, copy, modify, and distribute this software and
# its documentation for any purpose and without fee is hereby granted,
Expand Down
8 changes: 5 additions & 3 deletions firmware_password_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
A Python script to help Macintosh administrators manage the firmware passwords of their computers.
"""

# Copyright (c) 2016 University of Utah Student Computing Labs. ################
# All Rights Reserved.
# Copyright (c) 2019 University of Utah, Marriott Library, #####################
# Client Platform Services. All Rights Reserved.
#
# Permission to use, copy, modify, and distribute this software and
# its documentation for any purpose and without fee is hereby granted,
Expand Down Expand Up @@ -39,6 +39,8 @@
# 2.1.4 2017.10.23 using rm -P for secure delete,
# added additional alerting, additional pylint cleanup. tjm
#
# 2.1.5 2019.04.23 Corrected issue reporting no existing firmware password. tjm
#
#
# keyfile format:
#
Expand Down Expand Up @@ -183,7 +185,7 @@ def main():
help='Reboots the computer after the script completes successfully.')
parser.add_argument('-t', '--testmode', action="store_true", default=False,
help='Test mode. Verbose logging, will not delete keyfile.')
parser.add_argument('-v', '--version', action='version', version='%(prog)s 2.1.4')
parser.add_argument('-v', '--version', action='version', version='%(prog)s 2.1.5')

args = parser.parse_args()

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

setup(
name='Firmware Password Manager',
version='2.1.4',
version='2.1.5',
url='https://github.com/univ-of-utah-marriott-library-apple/firmware_password_manager',
author='Todd McDaniel, Marriott Library IT Services',
author='Todd McDaniel, Marriott Library Client Platform Services',
author_email='mlib-its-mac-github@lists.utah.edu',
description=('A Python script to help Macintosh administrators manage the firmware ',
'passwords of their computers.'),
Expand Down

0 comments on commit 0f652f5

Please sign in to comment.