-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(firefox-de): install from Mozilla apt repository
- Loading branch information
Showing
7 changed files
with
60 additions
and
126 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,29 @@ | ||
--- | ||
|
||
- name: "add the mozilla signing key" | ||
apt_key: | ||
url: "https://packages.mozilla.org/apt/repo-signing-key.gpg" | ||
id: "35BAA0B33E9EB396F59CA838C0BA5CE6DC6315A3" | ||
keyring: "{{ mozilla_apt_keyring }}" | ||
tags: | ||
- "mozilla" | ||
- "browser" | ||
|
||
- name: "add the mozilla apt repository" | ||
apt_repository: | ||
repo: "{{ item }}" | ||
with_items: | ||
- "deb [ signed-by={{ mozilla_apt_keyring }} ] https://packages.mozilla.org/apt mozilla main" | ||
- "deb-src [ signed-by={{ mozilla_apt_keyring }} ] https://packages.mozilla.org/apt mozilla main" | ||
tags: | ||
- "mozilla" | ||
- "browser" | ||
|
||
- name: "add browsers of choice" | ||
apt: | ||
pkg: | ||
- "chromium" | ||
- "firefox-devedition" | ||
- "lynx" | ||
tags: | ||
- "browser" |
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,3 @@ | ||
--- | ||
|
||
mozilla_apt_keyring: "{{ apt_keyring_dir }}/mozilla-keyring.gpg" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,4 +1,4 @@ | ||
#!/bin/sh | ||
#!/usr/bin/env bash | ||
|
||
export ANSIBLE_NOCOWS=1 | ||
ansible-playbook -K -i localhost, -e GITHUB_API_TOKEN=$GITHUB_API_TOKEN workstation.yml $* |
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