Compare commits
6 Commits
47d9c4c7e7
...
flatpak
| Author | SHA1 | Date | |
|---|---|---|---|
| 652d32b175 | |||
| 9497da521c | |||
| df00529f86 | |||
| 58cd98c817 | |||
| 3b312e6f9a | |||
| e625f463d7 |
@@ -127,14 +127,6 @@ function Invoke-GitClone {
|
|||||||
if ($result.rc -ne 0) {
|
if ($result.rc -ne 0) {
|
||||||
$module.FailJson($result.stderr)
|
$module.FailJson($result.stderr)
|
||||||
}
|
}
|
||||||
# Ensure the newly cloned repository has the correct owner
|
|
||||||
$userName = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
|
|
||||||
$idRef = [System.Security.Principal.NTAccount]::new($userName)
|
|
||||||
Get-Item $dest | foreach { `
|
|
||||||
$_ ; $_ | Get-ChildItem -Force -Recurse `
|
|
||||||
} | foreach { `
|
|
||||||
$acl = $_ | Get-Acl; $acl.SetOwner($idRef); $_ | Set-Acl -AclObject $acl `
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function Invoke-GitCheckout {
|
function Invoke-GitCheckout {
|
||||||
@@ -228,4 +220,13 @@ if ($recursive) {
|
|||||||
Invoke-GitSubmoduleUpdate $dest
|
Invoke-GitSubmoduleUpdate $dest
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Ensure the repository has the correct owner
|
||||||
|
$userName = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
|
||||||
|
$idRef = [System.Security.Principal.NTAccount]::new($userName)
|
||||||
|
Get-Item $dest | foreach { `
|
||||||
|
$_ ; $_ | Get-ChildItem -Force -Recurse `
|
||||||
|
} | foreach { `
|
||||||
|
$acl = $_ | Get-Acl; $acl.SetOwner($idRef); $_ | Set-Acl -AclObject $acl `
|
||||||
|
}
|
||||||
|
|
||||||
$module.ExitJson()
|
$module.ExitJson()
|
||||||
|
|||||||
@@ -25,6 +25,7 @@
|
|||||||
- role: autohotkey
|
- role: autohotkey
|
||||||
- role: ferdium
|
- role: ferdium
|
||||||
- role: firefox
|
- role: firefox
|
||||||
|
- role: fonts
|
||||||
- role: obsidian
|
- role: obsidian
|
||||||
- role: powertoys
|
- role: powertoys
|
||||||
- role: windows-terminal
|
- role: windows-terminal
|
||||||
|
|||||||
@@ -35,6 +35,11 @@
|
|||||||
https://downloads.1password.com/linux/debian/{{arch}} stable main
|
https://downloads.1password.com/linux/debian/{{arch}} stable main
|
||||||
dest: /etc/apt/sources.list.d/1password.list
|
dest: /etc/apt/sources.list.d/1password.list
|
||||||
|
|
||||||
|
- name: apt update
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
update_cache: true
|
||||||
|
|
||||||
- name: install gui package
|
- name: install gui package
|
||||||
when: '"WSL" not in ansible_kernel'
|
when: '"WSL" not in ansible_kernel'
|
||||||
become: true
|
become: true
|
||||||
|
|||||||
@@ -11,36 +11,21 @@
|
|||||||
path: '{{app_exe}}'
|
path: '{{app_exe}}'
|
||||||
register: app_stat
|
register: app_stat
|
||||||
|
|
||||||
- name: get installed version
|
|
||||||
when: app_stat.stat.exists == True
|
|
||||||
win_command: '{{app_exe}} --version'
|
|
||||||
register: app_version
|
|
||||||
changed_when: false
|
|
||||||
|
|
||||||
- when: app_stat.stat.exists == True
|
|
||||||
set_fact:
|
|
||||||
installed_version: '{{app_version.stdout.strip()}}'
|
|
||||||
|
|
||||||
- name: download latest installer
|
- name: download latest installer
|
||||||
|
when: not app_stat.stat.exists
|
||||||
win_get_url:
|
win_get_url:
|
||||||
url: https://downloads.1password.com/win/1PasswordSetup-latest.exe
|
url: https://downloads.1password.com/win/1PasswordSetup-latest.exe
|
||||||
dest: '{{installer_exe}}'
|
dest: '{{installer_exe}}'
|
||||||
|
|
||||||
- name: get installer version
|
|
||||||
win_shell: |
|
|
||||||
(Get-ItemProperty {{installer_exe}}).VersionInfo.ProductVersion
|
|
||||||
register: installer_product_version
|
|
||||||
changed_when: false
|
|
||||||
|
|
||||||
# FIXME: The [5:] is to account for a mystery "\e[6 q" prefix, not sure if this
|
|
||||||
# is consistent across machines or some other oddity.
|
|
||||||
- set_fact:
|
|
||||||
installer_version: '{{installer_product_version.stdout.strip()[5:]}}'
|
|
||||||
|
|
||||||
- name: run installer
|
- name: run installer
|
||||||
when: installed_version is not defined or installed_version != installer_version
|
when: not app_stat.stat.exists
|
||||||
win_command: '{{installer_exe}}'
|
win_command: '{{installer_exe}}'
|
||||||
|
|
||||||
|
- name: remove installer
|
||||||
|
win_file:
|
||||||
|
path: '{{installer_exe}}'
|
||||||
|
state: absent
|
||||||
|
|
||||||
- name: create start menu shortcut
|
- name: create start menu shortcut
|
||||||
win_shortcut:
|
win_shortcut:
|
||||||
src: '{{app_exe}}'
|
src: '{{app_exe}}'
|
||||||
|
|||||||
@@ -9,10 +9,6 @@
|
|||||||
repo: git@code.infektor.net:config/AutoHotKey.git
|
repo: git@code.infektor.net:config/AutoHotKey.git
|
||||||
dest: '{{autohotkey_repo_dir}}'
|
dest: '{{autohotkey_repo_dir}}'
|
||||||
branch: master
|
branch: master
|
||||||
- win_owner:
|
|
||||||
path: '{{autohotkey_repo_dir}}'
|
|
||||||
user: Benie
|
|
||||||
recurse: true
|
|
||||||
|
|
||||||
- name: create scheduled task
|
- name: create scheduled task
|
||||||
win_scheduled_task:
|
win_scheduled_task:
|
||||||
|
|||||||
6
roles/flatpak/tasks/Debian.yaml
Normal file
6
roles/flatpak/tasks/Debian.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: install apt package
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
name: flatpak
|
||||||
|
state: latest
|
||||||
9
roles/flatpak/tasks/main.yaml
Normal file
9
roles/flatpak/tasks/main.yaml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
|
|
||||||
|
- name: add flathub repository remote
|
||||||
|
become: true
|
||||||
|
flatpak_remote:
|
||||||
|
name: flathub
|
||||||
|
state: present
|
||||||
|
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||||
5
roles/fonts/tasks/Windows.yaml
Normal file
5
roles/fonts/tasks/Windows.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: nerd-fonts-CascadiaCode
|
||||||
|
state: latest
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
---
|
---
|
||||||
- when: ansible_os_family == 'Darwin'
|
- when: ansible_os_family == 'Darwin'
|
||||||
include_tasks: 'Darwin.yaml'
|
include_tasks: 'Darwin.yaml'
|
||||||
|
- when: ansible_os_family == 'Windows'
|
||||||
|
include_tasks: 'Windows.yaml'
|
||||||
- when: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
|
- when: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
|
||||||
include_tasks: 'Linux.yaml'
|
include_tasks: 'Linux.yaml'
|
||||||
|
|||||||
@@ -1,5 +1,17 @@
|
|||||||
---
|
---
|
||||||
|
- name: slurp /etc/os-release
|
||||||
|
slurp:
|
||||||
|
src: /etc/os-release
|
||||||
|
register: os_release_slurp
|
||||||
|
- set_fact:
|
||||||
|
os_release: "{{ os_release_slurp.content |
|
||||||
|
b64decode | trim() | replace('=', ': ') | from_yaml }}"
|
||||||
|
|
||||||
|
- include_tasks: Ubuntu.yaml
|
||||||
|
when: "'ID_LIKE' in os_release and os_release.ID_LIKE == 'ubuntu debian'"
|
||||||
|
|
||||||
- name: install apt packages
|
- name: install apt packages
|
||||||
|
when: "'ID_LIKE' not in os_release"
|
||||||
become: true
|
become: true
|
||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
---
|
|
||||||
- include_tasks: Ubuntu.yaml
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
---
|
|
||||||
- include_tasks: Ubuntu.yaml
|
|
||||||
@@ -1,5 +1,2 @@
|
|||||||
---
|
---
|
||||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
when: ansible_os_family in ['Darwin', 'Windows']
|
|
||||||
- include_tasks: '{{ansible_distribution}}.yaml'
|
|
||||||
when: ansible_os_family not in ['Darwin', 'Windows']
|
|
||||||
|
|||||||
@@ -1,7 +1,14 @@
|
|||||||
---
|
---
|
||||||
|
- name: slurp /etc/os-release
|
||||||
|
slurp:
|
||||||
|
src: /etc/os-release
|
||||||
|
register: os_release_slurp
|
||||||
|
- set_fact:
|
||||||
|
os_release: "{{ os_release_slurp.content |
|
||||||
|
b64decode | trim() | replace('=', ': ') | from_yaml }}"
|
||||||
|
|
||||||
- name: add neovim stable ppa
|
- name: add neovim stable ppa
|
||||||
when: ansible_distribution == 'Ubuntu' and
|
when: "'ID_LIKE' in os_release and os_release.ID_LIKE == 'ubuntu debian'"
|
||||||
ansible_distribution_version == '20.04'
|
|
||||||
become: true
|
become: true
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: ppa:neovim-ppa/stable
|
repo: ppa:neovim-ppa/stable
|
||||||
|
|||||||
@@ -12,7 +12,3 @@
|
|||||||
repo: git@github.com:kbenzie/notes.git
|
repo: git@github.com:kbenzie/notes.git
|
||||||
dest: '{{obsidian_notes_repo}}'
|
dest: '{{obsidian_notes_repo}}'
|
||||||
branch: main
|
branch: main
|
||||||
- win_owner:
|
|
||||||
path: '{{obsidian_notes_repo}}'
|
|
||||||
user: Benie
|
|
||||||
recurse: true
|
|
||||||
|
|||||||
Reference in New Issue
Block a user