-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
19 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
python-hpilo - Manage iLO interfaces from python code | ||
Copyright (C) 2011-2018 Dennis Kaarsemaker <[email protected]> | ||
Copyright (C) 2011-2020 Dennis Kaarsemaker <[email protected]> | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of (at your option) either the Apache License, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,7 @@ machine you run this code on, not the managed server. | |
|
||
Author and license | ||
------------------ | ||
This software is (c) 2011-2018 Dennis Kaarsemaker <[email protected]> | ||
This software is (c) 2011-2020 Dennis Kaarsemaker <[email protected]> | ||
|
||
This program is free software: you can redistribute it and/or modify it under | ||
the terms of the GNU General Public License as published by the Free Software | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Mirror the iLO firmware directory and create firmware.conf for the hpilo | ||
# repository. Not meant to be used by end users. | ||
# | ||
# (c) 2011-2018 Dennis Kaarsemaker <[email protected]> | ||
# (c) 2011-2020 Dennis Kaarsemaker <[email protected]> | ||
# see COPYING for license details | ||
|
||
import configparser | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,7 +118,7 @@ Development information | |
|
||
Author and license | ||
================== | ||
This software is (c) 2011-2018 Dennis Kaarsemaker <[email protected]> | ||
This software is (c) 2011-2020 Dennis Kaarsemaker <[email protected]> | ||
|
||
This program is free software: you can redistribute it and/or modify it under | ||
the terms of the GNU General Public License as published by the Free Software | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# (c) 2011-2018 Dennis Kaarsemaker <[email protected]> | ||
# (c) 2011-2020 Dennis Kaarsemaker <[email protected]> | ||
# see COPYING for license details | ||
|
||
__version__ = "4.3" | ||
__version__ = "4.4" | ||
|
||
import codecs | ||
import io | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/python | ||
# | ||
# (c) 2011-2018 Dennis Kaarsemaker <[email protected]> | ||
# (c) 2011-2020 Dennis Kaarsemaker <[email protected]> | ||
# see COPYING for license details | ||
|
||
import hpilo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Downloader / extracter for latest iLO2 / iLO3 / iLO4 firmware | ||
# Downloader / extracter for latest iLO2 / iLO3 / iLO4 / iLO5 firmware | ||
# | ||
# (c) 2011-2018 Dennis Kaarsemaker <[email protected]> | ||
# (c) 2011-2020 Dennis Kaarsemaker <[email protected]> | ||
# see COPYING for license details | ||
|
||
import tarfile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
from distutils.core import setup | ||
|
||
setup(name = "python-hpilo", | ||
version = "4.3", | ||
version = "4.4", | ||
author = "Dennis Kaarsemaker", | ||
author_email = "[email protected]", | ||
url = "http://github.com/seveas/python-hpilo", | ||
|