Skip to content
This repository has been archived by the owner on Jan 13, 2020. It is now read-only.
/ accelpy Public archive

Commit

Permalink
1.0.0-beta.27
Browse files Browse the repository at this point in the history
  • Loading branch information
JGoutin committed Oct 3, 2019
1 parent 78d3dd8 commit b3eb635
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion accelpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
See the License for the specific language governing permissions and
limitations under the License.
"""
__version__ = '1.0.0-beta.26'
__version__ = '1.0.0-beta.27'
__copyright__ = "Copyright 2019 Accelize"
__licence__ = "Apache 2.0"

Expand Down
3 changes: 3 additions & 0 deletions accelpy/_ansible/common.user_override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ os_hardening: false
# Enable SSH security hardening
# See "https://galaxy.ansible.com/dev-sec/ssh-hardening" for more information
ssh_hardening: false

# Enable OS packages updates
os_packages_updates: true
4 changes: 2 additions & 2 deletions accelpy/_ansible/roles/common.init_system/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
purge: true
retries: 10
delay: 1
when: ansible_os_family == 'Debian'
when: ansible_os_family == 'Debian' and os_packages_updates | bool

- name: Ensure system is up to date
yum:
name: "*"
state: latest # noqa 403
retries: 10
delay: 1
when: ansible_os_family == 'RedHat'
when: ansible_os_family == 'RedHat' and os_packages_updates | bool

- name: Ensure FPGA user group exists
group:
Expand Down

0 comments on commit b3eb635

Please sign in to comment.