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

Force Mode to recreate the firefox-config-directory #1

Open
whotwagner opened this issue Sep 23, 2022 · 0 comments · May be fixed by #2
Open

Force Mode to recreate the firefox-config-directory #1

whotwagner opened this issue Sep 23, 2022 · 0 comments · May be fixed by #2

Comments

@whotwagner
Copy link

If you modify the bookmarks after a deployment, those modifications won't show up in the firefox-browser. It is neccessary to delete the firefox_config_dir and recreate it using the following existing task(in https://github.com/ait-cs-IaaS/ansible-firefox-autoconfig/blob/master/tasks/main.yml ):

- name:  Create firefox config directory in user home
  become: yes
  file:
    path: "{{ firefox_config_dir }}"
    state: directory
    mode: 0755
    owner: "{{ firefox_user }}"
    group: "{{ firefox_user }}"
  tags: [config]

I would suggest to create a variable "firefox_config_force" that deletes the firefox_config_dir before every run.

@whotwagner whotwagner linked a pull request Sep 23, 2022 that will close this issue
5 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant