Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ansible for gnome messsage banner UBTU-20-010003 #11090

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# platform = multi_platform_ubuntu
# reboot = false
# strategy = unknown
# complexity = low
# disruption = medium
{{{ ansible_instantiate_variables("login_banner_text") }}}

- name: "{{{ rule_title }}}"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use a more descriptive name, follow the style guide

lineinfile:
path: /etc/gdm3/greeter.dconf-defaults
regexp: ^(#.*)(banner-message-text=)
line: \2
backrefs: true

- name: "{{{ rule_title }}}"
ini_file:
dest: /etc/gdm3/greeter.dconf-defaults
section: org/gnome/login-screen
option: banner-message-text
value: '{{{ ansible_deregexify_banner_dconf_gnome("login_banner_text") }}}'
create: yes
no_extra_spaces: yes

- name: Dconf Update
command: dconf update
Loading