Skip to content
This repository was archived by the owner on Apr 29, 2023. It is now read-only.

Commit 7eaa30e

Browse files
committed
Move role to collection.
1 parent ed658b6 commit 7eaa30e

File tree

5 files changed

+19
-2
lines changed

5 files changed

+19
-2
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Robin Gierse
3+
Copyright (c) 2023 Robin Gierse
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Ansible Role: Sudo
22

3+
---
4+
5+
## Unmaintained! Moved to collection!
6+
This role has moved to my [**main** collection](https://github.com/thorian93/main).
7+
It is **not** maintained here anymore!
8+
Head over to the [collection](https://github.com/thorian93/main) for up to date content.
9+
10+
---
11+
312
[![Ansible Role: Sudo](https://img.shields.io/ansible/role/55145?style=flat-square)](https://galaxy.ansible.com/thorian93/sudo)
413
[![Ansible Role: Sudo](https://img.shields.io/ansible/quality/55145?style=flat-square)](https://galaxy.ansible.com/thorian93/sudo)
514
[![Ansible Role: Sudo](https://img.shields.io/ansible/role/d/55145?style=flat-square)](https://galaxy.ansible.com/thorian93/sudo)

defaults/main.yml

+4
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ sudo_stable_os:
44
- CentOS 8
55
- Debian 9
66
- Debian 10
7+
- Debian 11
78
- Fedora 30
89
- Fedora 31
910
- Fedora 32
11+
- Fedora 33
12+
- Fedora 34
13+
- Fedora 35
1014
- SLES 11
1115
- SLES 12
1216
- openSUSE Leap 15

meta/main.yml

+4
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,15 @@ galaxy_info:
2121
versions:
2222
- Stretch
2323
- Buster
24+
- Bullseye
2425
- name: Fedora
2526
versions:
2627
- 30
2728
- 31
2829
- 32
30+
- 33
31+
- 34
32+
- 35
2933
- name: opensuse
3034
versions:
3135
- 15.2

tasks/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
line: "{{ item.line }}"
2525
regexp: "{{ item.regex }}"
2626
state: "{{ item.state }}"
27-
backup: 'true'
27+
backup: true
2828
insertbefore: '.*includedir.*'
2929
validate: 'visudo -cf %s'
3030
with_items: "{{ sudo_defaults }}"

0 commit comments

Comments
 (0)