-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add Debian Bullseye support - Drop Kali Linux and Debian/Devuan Jessie support - Modern Ansible (use collections) - Improve code and CI with lintters - Migrate from legacy Travis to new Travis
- Loading branch information
Showing
33 changed files
with
322 additions
and
258 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
enable_list: | ||
- fqcn-builtins |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
|
||
rules: | ||
line-length: disable |
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
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,21 +1,32 @@ | ||
--- | ||
|
||
- name: restart openntpd | ||
service: name=openntpd state=restarted | ||
ansible.builtin.service: | ||
name: openntpd | ||
state: restarted | ||
|
||
- name: restart ntp | ||
service: name=ntp state=restarted | ||
ansible.builtin.service: | ||
name: ntp | ||
state: restarted | ||
|
||
- name: restart cron | ||
service: name=cron state=restarted | ||
ansible.builtin.service: | ||
name: cron | ||
state: restarted | ||
|
||
- name: restart rsyslog | ||
service: name=rsyslog state=restarted | ||
ansible.builtin.service: | ||
name: rsyslog | ||
state: restarted | ||
|
||
- name: update tzdata | ||
command: dpkg-reconfigure -f noninteractive tzdata | ||
ansible.builtin.command: dpkg-reconfigure -f noninteractive tzdata | ||
|
||
- name: locale-gen | ||
command: locale-gen | ||
ansible.builtin.command: locale-gen | ||
|
||
- name: reload networking | ||
service: name=networking state=reloaded | ||
ansible.builtin.service: | ||
name: networking | ||
state: reloaded |
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,33 +1,33 @@ | ||
--- | ||
|
||
galaxy_info: | ||
role_name: debian_bootstrap | ||
namespace: HanXHX | ||
author: Emilien Mantel | ||
description: Normalize and prepare a Debian/Devuan/Kali Linux server | ||
description: Normalize and prepare a Debian/Devuan/Ubuntu Linux server | ||
company: | ||
license: GPLv2 | ||
min_ansible_version: 2.9 | ||
min_ansible_version: 2.11 | ||
platforms: | ||
- name: Debian | ||
versions: | ||
- jessie | ||
- stretch | ||
- buster | ||
- name: Devuan | ||
versions: | ||
- jessie | ||
- ascii | ||
- name: Kali Linux | ||
versions: | ||
- rolling-kali | ||
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- name: Debian | ||
versions: | ||
- stretch | ||
- buster | ||
- bullseye | ||
- name: Devuan | ||
versions: | ||
- ascii | ||
- name: Ubuntu | ||
versions: | ||
- bionic | ||
galaxy_tags: | ||
- networking | ||
- packaging | ||
- system | ||
- debian | ||
- apt | ||
- alternatives | ||
- editor | ||
- ntp | ||
- networking | ||
- packaging | ||
- system | ||
- debian | ||
- apt | ||
- alternatives | ||
- editor | ||
- ntp | ||
|
||
dependencies: [] |
Oops, something went wrong.