Merge branch 'master' of git.ducamps.win:ansible-roles/system
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
commit
f70f8bda3b
19
.drone.yml
Normal file
19
.drone.yml
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: lint
|
||||
|
||||
steps:
|
||||
- name: ansible linting
|
||||
image: cytopia/ansible-lint
|
||||
|
||||
commands:
|
||||
- ansible-lint tasks/main.yml
|
||||
- name: markdown linting
|
||||
image: 06kellyjac/markdownlint-cli
|
||||
commands:
|
||||
- markdownlint .
|
||||
when:
|
||||
status:
|
||||
- success
|
||||
- failure
|
9
.markdownlint.yaml
Normal file
9
.markdownlint.yaml
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
# Default state for all rules
|
||||
default: true
|
||||
MD009:
|
||||
strict: false
|
||||
|
||||
MD013: false
|
||||
MD033: false
|
||||
MD024: false
|
33
.yamllint
Normal file
33
.yamllint
Normal file
@ -0,0 +1,33 @@
|
||||
---
|
||||
# Based on ansible-lint config
|
||||
extends: default
|
||||
|
||||
rules:
|
||||
braces:
|
||||
max-spaces-inside: 1
|
||||
level: error
|
||||
brackets:
|
||||
max-spaces-inside: 1
|
||||
level: error
|
||||
colons:
|
||||
max-spaces-after: -1
|
||||
level: error
|
||||
commas:
|
||||
max-spaces-after: -1
|
||||
level: error
|
||||
comments: disable
|
||||
comments-indentation: disable
|
||||
document-start: disable
|
||||
empty-lines:
|
||||
max: 3
|
||||
level: error
|
||||
hyphens:
|
||||
level: error
|
||||
indentation: disable
|
||||
key-duplicates: enable
|
||||
line-length: disable
|
||||
new-line-at-end-of-file: disable
|
||||
new-lines:
|
||||
type: unix
|
||||
trailing-spaces: disable
|
||||
truthy: disable
|
@ -1,90 +1,99 @@
|
||||
---
|
||||
user:
|
||||
name: user
|
||||
arch_base_locale: fr_FR.UTF-8
|
||||
arch_base_keymap: fr
|
||||
arch_base_timezone: Europe/Paris
|
||||
arch_base_locales: [
|
||||
"fr_FR.UTF-8",
|
||||
"en_US.UTF-8"
|
||||
]
|
||||
arch_base_locales:
|
||||
- "fr_FR.UTF-8"
|
||||
- "en_US.UTF-8"
|
||||
time:
|
||||
hwclock: UTC
|
||||
timezone: Europe/Paris
|
||||
|
||||
system_base_softwares_arch:
|
||||
- 'zsh'
|
||||
- 'stow'
|
||||
- 'wol'
|
||||
- 'nmap'
|
||||
- 'bind'
|
||||
- 'rsync'
|
||||
- 'awesome-terminal-fonts'
|
||||
- 'wget'
|
||||
- 'bat'
|
||||
- 'diff-so-fancy'
|
||||
- 'git'
|
||||
- 'htop'
|
||||
- 'thefuck'
|
||||
- 'tldr'
|
||||
- 'ntfs-3g'
|
||||
- 'python-lxml'
|
||||
- 'tmux'
|
||||
- 'vim'
|
||||
- 'python-pip'
|
||||
- 'pacman-contrib'
|
||||
- 'yarn'
|
||||
- 'npm'
|
||||
- 'nethogs'
|
||||
- 'iftop'
|
||||
- 'zip'
|
||||
- 'unzip'
|
||||
- 'unrar'
|
||||
- 'git-lfs'
|
||||
- 'httpie'
|
||||
- 'lsof'
|
||||
- 'glances'
|
||||
- 'ethtool'
|
||||
- 'gnu-netcat'
|
||||
- 'netctl'
|
||||
- 'logrotate'
|
||||
- 'otf-cascadia-code'
|
||||
- 'neovim'
|
||||
- "zsh"
|
||||
- "stow"
|
||||
- "wol"
|
||||
- "nmap"
|
||||
- "bind"
|
||||
- "rsync"
|
||||
- "awesome-terminal-fonts"
|
||||
- "wget"
|
||||
- "bat"
|
||||
- "diff-so-fancy"
|
||||
- "git"
|
||||
- "htop"
|
||||
- "thefuck"
|
||||
- "tldr"
|
||||
- "ntfs-3g"
|
||||
- "python-lxml"
|
||||
- "tmux"
|
||||
- "vim"
|
||||
- "python-pip"
|
||||
- "pacman-contrib"
|
||||
- "yarn"
|
||||
- "npm"
|
||||
- "nethogs"
|
||||
- "iftop"
|
||||
- "zip"
|
||||
- "unzip"
|
||||
- "unrar"
|
||||
- "git-lfs"
|
||||
- "httpie"
|
||||
- "lsof"
|
||||
- "glances"
|
||||
- "ethtool"
|
||||
- "gnu-netcat"
|
||||
- "netctl"
|
||||
- "logrotate"
|
||||
- "otf-cascadia-code"
|
||||
- "neovim"
|
||||
- "python-pynvim"
|
||||
- "yamllint"
|
||||
- "prettier"
|
||||
- "fd"
|
||||
- "fzf"
|
||||
system_base_aur_soft:
|
||||
- "nodejs-markdownlint-cli"
|
||||
|
||||
system_base_softwares_debian:
|
||||
- 'zsh'
|
||||
- 'lsof'
|
||||
- 'glances'
|
||||
- 'stow'
|
||||
- 'wakeonlan'
|
||||
- 'nmap'
|
||||
- 'dnsutils'
|
||||
- 'rsync'
|
||||
- "zsh"
|
||||
- "lsof"
|
||||
- "glances"
|
||||
- "stow"
|
||||
- "wakeonlan"
|
||||
- "nmap"
|
||||
- "dnsutils"
|
||||
- "rsync"
|
||||
# - 'awesome-terminal-fonts'
|
||||
- 'wget'
|
||||
- "wget"
|
||||
# - 'bat'
|
||||
# - 'diff-so-fancy'
|
||||
- 'git'
|
||||
- 'htop'
|
||||
- 'thefuck'
|
||||
- 'tldr'
|
||||
- 'ntfs-3g'
|
||||
- 'python-lxml'
|
||||
- 'tmux'
|
||||
- 'neovim'
|
||||
- 'python-neovim'
|
||||
- 'python-pip'
|
||||
- 'yarn'
|
||||
- 'npm'
|
||||
- 'nethogs'
|
||||
- 'iftop'
|
||||
- 'zip'
|
||||
- 'unzip'
|
||||
- 'unrar'
|
||||
- 'git-lfs'
|
||||
- 'httpie'
|
||||
- 'ethtool'
|
||||
- 'traceroute'
|
||||
- 'fonts-cascadia-code'
|
||||
- "git"
|
||||
- "htop"
|
||||
- "thefuck"
|
||||
- "tldr"
|
||||
- "ntfs-3g"
|
||||
- "python-lxml"
|
||||
- "tmux"
|
||||
- "neovim"
|
||||
- "python3-neovim"
|
||||
- "python3-pip"
|
||||
- "yarn"
|
||||
- "npm"
|
||||
- "nethogs"
|
||||
- "iftop"
|
||||
- "zip"
|
||||
- "unzip"
|
||||
- "unrar"
|
||||
- "git-lfs"
|
||||
- "httpie"
|
||||
- "ethtool"
|
||||
- "traceroute"
|
||||
- "fonts-cascadia-code"
|
||||
- "fd-find"
|
||||
- "fzf"
|
||||
|
||||
system_upgrade: false
|
||||
system_arch_local_mirror:
|
||||
@ -102,3 +111,9 @@ privatekeytodeploy: []
|
||||
# - user: root
|
||||
# keyfile: /root/.ssh/id_rsa
|
||||
# privatekey: {{ vault_privatekey }}
|
||||
|
||||
# Custom hosts entries to be added
|
||||
hosts_entries: []
|
||||
|
||||
# Custom host file snippets to be added
|
||||
hosts_file_snippets: []
|
||||
|
@ -30,6 +30,13 @@
|
||||
become: yes
|
||||
when: ansible_facts['os_family'] == "Archlinux"
|
||||
|
||||
- name: install aur workstation soft
|
||||
aur:
|
||||
name: "{{ system_base_aur_soft }}"
|
||||
state: present
|
||||
become: yes
|
||||
become_user: aur_builder
|
||||
when: ansible_facts['os_family'] == "Archlinux"
|
||||
|
||||
- name: launch debian base install software
|
||||
apt:
|
||||
@ -39,7 +46,6 @@
|
||||
become: yes
|
||||
when: ansible_facts['os_family'] == "Debian"
|
||||
|
||||
|
||||
- name: GITHUB | Get current version of bat
|
||||
shell: >
|
||||
warn=False
|
||||
@ -52,7 +58,6 @@
|
||||
not bat_version.stdout|regex_search('\w+\.\w+\.\w+')
|
||||
when: ansible_facts['os_family'] == "Debian"
|
||||
|
||||
|
||||
- name: DEBIAN | Set URL to download bins
|
||||
set_fact:
|
||||
debian_url: "https://github.com/sharkdp/bat/releases/download/v{{ bat_version.stdout }}/bat_{{ bat_version.stdout }}_amd64.deb"
|
||||
|
@ -2,4 +2,5 @@
|
||||
- name: Ensure hostname set
|
||||
hostname:
|
||||
name: "{{ inventory_hostname }}"
|
||||
use: systemd
|
||||
become: yes
|
8
tasks/hosts.yml
Normal file
8
tasks/hosts.yml
Normal file
@ -0,0 +1,8 @@
|
||||
- name: Install custom hosts file
|
||||
become: true
|
||||
template:
|
||||
src: etc_hosts.j2
|
||||
dest: "{{ hosts_file }}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0644
|
@ -1,4 +1,5 @@
|
||||
#- include_tasks: hostname.yml
|
||||
- include_tasks: hosts.yml
|
||||
- include_tasks: hostname.yml
|
||||
- include_tasks: locales.yml
|
||||
- include_tasks: time.yml
|
||||
|
@ -10,7 +10,33 @@
|
||||
owner: "{{item}}" # not required. Name of the user that should own the file/directory, as would be fed to I(chown).
|
||||
with_items:
|
||||
- "{{user.name}}"
|
||||
- root
|
||||
- name: ensure root ssh directory exist
|
||||
become: true
|
||||
file:
|
||||
state: directory
|
||||
path: "/root/.ssh"
|
||||
owner: "root"
|
||||
mode: 0700
|
||||
|
||||
- name: copy ssh config for root
|
||||
become: yes
|
||||
copy:
|
||||
dest: /root/.ssh/ # required. Remote absolute path where the file should be copied to. If I(src) is a directory, this must be a directory too. If I(dest) is a nonexistent path and if either I(dest) ends with "/" or I(src) is a directory, I(dest) is created. If I(src) and I(dest) are files, the parent directory of I(dest) isn't created: the task fails if it doesn't already exist.
|
||||
src: "ssh/config" # not required. Local path to a file to copy to the remote server; can be absolute or relative. If path is a directory, it is copied recursively. In this case, if path ends with "/", only inside contents of that directory are copied to destination. Otherwise, if it does not end with "/", the directory itself with all contents is copied. This behavior is similar to Rsync.
|
||||
force: yes # not required. the default is C(yes), which will replace the remote file when contents are different than the source. If C(no), the file will only be transferred if the destination does not exist.
|
||||
remote_src: no # not required. If C(no), it will search for I(src) at originating/master machine.,If C(yes) it will go to the remote/target machine for the I(src). Default is C(no).,Currently I(remote_src) does not support recursive copying.,I(remote_src) only works with C(mode=preserve) as of version 2.6.
|
||||
mode: "600" # not required. Mode the file or directory should be. For those used to I(/usr/bin/chmod) remember that modes are actually octal numbers. You must either add a leading zero so that Ansible's YAML parser knows it is an octal number (like C(0644) or C(01777)) or quote it (like C('644') or C('1777')) so Ansible receives a string and can do its own conversion from string into number. Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results. As of version 1.8, the mode may be specified as a symbolic mode (for example, C(u+rwx) or C(u=rw,g=r,o=r)). As of version 2.3, the mode may also be the special string C(preserve). C(preserve) means that the file will be given the same permissions as the source file.
|
||||
selevel: s0 # not required. Level part of the SELinux file context. This is the MLS/MCS attribute, sometimes known as the C(range). C(_default) feature works as for I(seuser).
|
||||
owner: "root" # not required. Name of the user that should own the file/directory, as would be fed to I(chown).
|
||||
|
||||
- name: ensure key directory exist
|
||||
become: true
|
||||
file:
|
||||
state: directory
|
||||
path: "{{ item.keyfile | dirname }}"
|
||||
owner: "{{item.user}}"
|
||||
mode: 0700
|
||||
with_items: "{{privatekeytodeploy}}"
|
||||
|
||||
- name: Install ssh private key
|
||||
become: yes
|
||||
@ -29,8 +55,6 @@
|
||||
with_items: "{{keystodeploy}}"
|
||||
become: yes
|
||||
|
||||
|
||||
|
||||
- name: les connexions par mot de passe sont désactivées
|
||||
become: yes
|
||||
lineinfile:
|
||||
|
19
templates/etc_hosts.j2
Normal file
19
templates/etc_hosts.j2
Normal file
@ -0,0 +1,19 @@
|
||||
# Hosts file -- Don't edit manually!
|
||||
#
|
||||
# {{ ansible_managed }}
|
||||
{% if hosts_entries|length != 0 %}
|
||||
|
||||
# Custom entries
|
||||
{% for host in hosts_entries %}
|
||||
{{ host.ip }} {{ host.name }} {{ host.aliases | default('') | join(' ') }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% if hosts_file_snippets %}
|
||||
|
||||
#
|
||||
# Hosts file snippets
|
||||
#
|
||||
|
||||
{{ hosts_file_snippets }}
|
||||
|
||||
{% endif %}
|
@ -0,0 +1,2 @@
|
||||
---
|
||||
hosts_file: "/etc/hosts"
|
Loading…
Reference in New Issue
Block a user