Initial commit
This commit is contained in:
commit
d401c517fd
164
.gitignore
vendored
Normal file
164
.gitignore
vendored
Normal file
|
@ -0,0 +1,164 @@
|
||||||
|
# ---> Ansible
|
||||||
|
*.retry
|
||||||
|
|
||||||
|
# ---> Python
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
share/python-wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a python script from a template
|
||||||
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
cover/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
db.sqlite3-journal
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
.pybuilder/
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
# For a library or package, you might want to ignore these files since the code is
|
||||||
|
# intended to run in multiple environments; otherwise, check them in:
|
||||||
|
# .python-version
|
||||||
|
|
||||||
|
# pipenv
|
||||||
|
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||||
|
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||||
|
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||||
|
# install all needed dependencies.
|
||||||
|
#Pipfile.lock
|
||||||
|
|
||||||
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
||||||
|
__pypackages__/
|
||||||
|
|
||||||
|
# Celery stuff
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# Environments
|
||||||
|
.env
|
||||||
|
.venv
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# pytype static type analyzer
|
||||||
|
.pytype/
|
||||||
|
|
||||||
|
# Cython debug symbols
|
||||||
|
cython_debug/
|
||||||
|
|
||||||
|
# ---> Vim
|
||||||
|
# Swap
|
||||||
|
[._]*.s[a-v][a-z]
|
||||||
|
!*.svg # comment out if you don't need vector files
|
||||||
|
[._]*.sw[a-p]
|
||||||
|
[._]s[a-rt-v][a-z]
|
||||||
|
[._]ss[a-gi-z]
|
||||||
|
[._]sw[a-p]
|
||||||
|
|
||||||
|
# Session
|
||||||
|
Session.vim
|
||||||
|
Sessionx.vim
|
||||||
|
|
||||||
|
# Temporary
|
||||||
|
.netrwhist
|
||||||
|
*~
|
||||||
|
# Auto-generated tag files
|
||||||
|
tags
|
||||||
|
# Persistent undo
|
||||||
|
[._]*.un~
|
||||||
|
|
43
README.md
Normal file
43
README.md
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
grub_add_cmdlineparameter
|
||||||
|
=========================
|
||||||
|
|
||||||
|
Add kernel command line parameters to grub config
|
||||||
|
|
||||||
|
Requirements
|
||||||
|
------------
|
||||||
|
|
||||||
|
- GRUB with /etc/default/grub
|
||||||
|
|
||||||
|
Role Variables
|
||||||
|
--------------
|
||||||
|
|
||||||
|
Defaults:
|
||||||
|
- `cmdlineparameter_reboot`: False - Reboot machine if necessary
|
||||||
|
|
||||||
|
Dependencies
|
||||||
|
------------
|
||||||
|
|
||||||
|
- None
|
||||||
|
|
||||||
|
Example Playbook
|
||||||
|
----------------
|
||||||
|
|
||||||
|
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
|
||||||
|
|
||||||
|
- hosts: servers
|
||||||
|
roles:
|
||||||
|
- role: grub_add_cmdlineparameter
|
||||||
|
vars:
|
||||||
|
net.ifnames: 0
|
||||||
|
|
||||||
|
License
|
||||||
|
-------
|
||||||
|
|
||||||
|
AGPL3.0-or-later
|
||||||
|
|
||||||
|
Author Information
|
||||||
|
------------------
|
||||||
|
|
||||||
|
- Sven Velt <sven-ansiblerole@velt.biz>
|
||||||
|
- https://git.velt.biz/
|
||||||
|
|
3
defaults/main.yml
Normal file
3
defaults/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
cmdlineparameter_reboot: False
|
||||||
|
|
8
grub_add_cmdlineparameter.yml
Normal file
8
grub_add_cmdlineparameter.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
- hosts: all
|
||||||
|
|
||||||
|
roles:
|
||||||
|
- role: grub_add_cmdlineparameter
|
||||||
|
vars:
|
||||||
|
net.ifnames: 0
|
||||||
|
|
36
handlers/main.yml
Normal file
36
handlers/main.yml
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
---
|
||||||
|
- name: "[GRUB] update-grub"
|
||||||
|
listen:
|
||||||
|
- update-grub for cmdlineparameter
|
||||||
|
ansible.builtin.command:
|
||||||
|
cmd: update-grub
|
||||||
|
ignore_errors: True
|
||||||
|
register: cmdlineparameter_update_grub
|
||||||
|
|
||||||
|
|
||||||
|
- name: "[GRUB] Do NOT reboot machine"
|
||||||
|
listen:
|
||||||
|
- update-grub for cmdlineparameter
|
||||||
|
set_fact:
|
||||||
|
cmdlineparameter_reboot: False
|
||||||
|
when: cmdlineparameter_update_grub is failed
|
||||||
|
|
||||||
|
|
||||||
|
- name: "[GRUB] Attention to update-grub"
|
||||||
|
listen:
|
||||||
|
- update-grub for cmdlineparameter
|
||||||
|
pause:
|
||||||
|
prompt: "'update-grub' failed! Please check contents of /etc/default/grub"
|
||||||
|
minutes: 1
|
||||||
|
when: cmdlineparameter_update_grub is failed
|
||||||
|
|
||||||
|
|
||||||
|
- name: Reboot machine for GrubCmdlineParameter
|
||||||
|
ansible.builtin.reboot:
|
||||||
|
msg: Rebooting for changes taking effect
|
||||||
|
search_paths:
|
||||||
|
- /lib/molly-guard
|
||||||
|
- /usr/sbin
|
||||||
|
when: cmdlineparameter_reboot == True
|
||||||
|
|
||||||
|
|
22
meta/main.yml
Normal file
22
meta/main.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
galaxy_info:
|
||||||
|
author: Sven Velt
|
||||||
|
description: Add kernel command line parameters in GRUB
|
||||||
|
company: velt.biz
|
||||||
|
issue_tracker_url: https://git.velt.biz/Ansible/role.grub_add_cmdlineparameter/issues
|
||||||
|
license: AGPL-3.0-or-later
|
||||||
|
min_ansible_version: '2.10'
|
||||||
|
platforms:
|
||||||
|
- name: Debian
|
||||||
|
versions:
|
||||||
|
- buster
|
||||||
|
- bullseye
|
||||||
|
- trixie
|
||||||
|
- name: Devuan
|
||||||
|
versions:
|
||||||
|
- chimaera
|
||||||
|
- daedalus
|
||||||
|
galaxy_tags: []
|
||||||
|
namespace: velt
|
||||||
|
|
||||||
|
dependencies: []
|
||||||
|
|
6
tasks/main.yml
Normal file
6
tasks/main.yml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
- name: Loop over GRUB parameters
|
||||||
|
ansible.builtin.include_tasks: parameter.yml
|
||||||
|
loop: "{{ grub_add_cmdlineparameter | dict2items }}"
|
||||||
|
|
||||||
|
|
21
tasks/parameter.yml
Normal file
21
tasks/parameter.yml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
- name: "Look for parameter {{ item.key }}"
|
||||||
|
ansible.builtin.shell:
|
||||||
|
cmd: 'grep "^GRUB_CMDLINE_LINUX=.*{{ item.key }}={{ item.value }}" /etc/default/grub || true'
|
||||||
|
changed_when: False
|
||||||
|
register: grub_cmdline_find_param
|
||||||
|
|
||||||
|
|
||||||
|
- name: "Add {{ item.key }}={{ item.value }}"
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /etc/default/grub
|
||||||
|
line: 'GRUB_CMDLINE_LINUX="${GRUB_CMDLINE_LINUX} {{ item.key }}={{ item.value }}"'
|
||||||
|
insertafter: '^GRUB_CMDLINE_LINUX='
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
|
backup: yes
|
||||||
|
notify:
|
||||||
|
- "update-grub for cmdlineparameter"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue