Compare commits
1 Commits
gnome-shel
...
win_git
| Author | SHA1 | Date | |
|---|---|---|---|
| e92347d035 |
@@ -1,154 +0,0 @@
|
|||||||
#!/usr/bin/python
|
|
||||||
|
|
||||||
# Copyright: (c) 2018, Terry Jones <terry.jones@example.org>
|
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
||||||
from __future__ import (absolute_import, division, print_function)
|
|
||||||
from typing import Dict, List
|
|
||||||
__metaclass__ = type
|
|
||||||
|
|
||||||
DOCUMENTATION = r'''
|
|
||||||
---
|
|
||||||
module: my_test
|
|
||||||
|
|
||||||
short_description: This is my test module
|
|
||||||
|
|
||||||
# If this is part of a collection, you need to use semantic versioning,
|
|
||||||
# i.e. the version is of the form "2.5.0" and not "2.4".
|
|
||||||
version_added: "1.0.0"
|
|
||||||
|
|
||||||
description: This is my longer description explaining my test module.
|
|
||||||
|
|
||||||
options:
|
|
||||||
name:
|
|
||||||
description: This is the message to send to the test module.
|
|
||||||
required: true
|
|
||||||
type: str
|
|
||||||
new:
|
|
||||||
description:
|
|
||||||
- Control to demo if the result of this module is changed or not.
|
|
||||||
- Parameter description can be a list as well.
|
|
||||||
required: false
|
|
||||||
type: bool
|
|
||||||
# Specify this value according to your collection
|
|
||||||
# in format of namespace.collection.doc_fragment_name
|
|
||||||
# extends_documentation_fragment:
|
|
||||||
# - my_namespace.my_collection.my_doc_fragment_name
|
|
||||||
|
|
||||||
author:
|
|
||||||
- Your Name (@yourGitHubHandle)
|
|
||||||
'''
|
|
||||||
|
|
||||||
EXAMPLES = r'''
|
|
||||||
# Pass in a message
|
|
||||||
- name: Test with a message
|
|
||||||
my_namespace.my_collection.my_test:
|
|
||||||
name: hello world
|
|
||||||
|
|
||||||
# pass in a message and have changed true
|
|
||||||
- name: Test with a message and changed output
|
|
||||||
my_namespace.my_collection.my_test:
|
|
||||||
name: hello world
|
|
||||||
new: true
|
|
||||||
|
|
||||||
# fail the module
|
|
||||||
- name: Test failure of the module
|
|
||||||
my_namespace.my_collection.my_test:
|
|
||||||
name: fail me
|
|
||||||
'''
|
|
||||||
|
|
||||||
RETURN = r'''
|
|
||||||
# These are examples of possible return values, and in general should use other names for return values.
|
|
||||||
original_message:
|
|
||||||
description: The original name param that was passed in.
|
|
||||||
type: str
|
|
||||||
returned: always
|
|
||||||
sample: 'hello world'
|
|
||||||
message:
|
|
||||||
description: The output message that the test module generates.
|
|
||||||
type: str
|
|
||||||
returned: always
|
|
||||||
sample: 'goodbye'
|
|
||||||
'''
|
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule, subprocess
|
|
||||||
|
|
||||||
|
|
||||||
def run_module():
|
|
||||||
# define available arguments/parameters a user can pass to the module
|
|
||||||
module_args = dict(
|
|
||||||
keybindings=dict(type='list', require=True),
|
|
||||||
)
|
|
||||||
|
|
||||||
# seed the result dict in the object
|
|
||||||
# we primarily care about changed and state
|
|
||||||
# changed is if this module effectively modified the target
|
|
||||||
# state will include any data that you want your module to pass back
|
|
||||||
# for consumption, for example, in a subsequent task
|
|
||||||
result = dict(
|
|
||||||
changed=False,
|
|
||||||
original_message='',
|
|
||||||
message=''
|
|
||||||
)
|
|
||||||
|
|
||||||
# the AnsibleModule object will be our abstraction working with Ansible
|
|
||||||
# this includes instantiation, a couple of common attr would be the
|
|
||||||
# args/params passed to the execution, as well as if the module
|
|
||||||
# supports check mode
|
|
||||||
module = AnsibleModule(
|
|
||||||
argument_spec=module_args,
|
|
||||||
supports_check_mode=True
|
|
||||||
)
|
|
||||||
|
|
||||||
# if the user is working with this module in only check mode we do not
|
|
||||||
# want to make any changes to the environment, just return the current
|
|
||||||
# state with no modifications
|
|
||||||
if module.check_mode:
|
|
||||||
module.exit_json(**result)
|
|
||||||
|
|
||||||
# manipulate or modify the state as needed (this is going to be the
|
|
||||||
# part where your module will do what it needs to do)
|
|
||||||
|
|
||||||
keys = []
|
|
||||||
for index, keybinding in enumerate(module.params["keybindings"]):
|
|
||||||
key = f"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom{index}"
|
|
||||||
for value in ["binding", "command", "name"]:
|
|
||||||
subprocess.check_call(
|
|
||||||
["dconf", "write", f"/{key}{value}", f"'{keybinding[value]}'"]
|
|
||||||
)
|
|
||||||
keys.append(key)
|
|
||||||
|
|
||||||
subprocess.check_call(
|
|
||||||
[
|
|
||||||
"dconf",
|
|
||||||
"write",
|
|
||||||
"/org/gnome/settings-daemon/plugins/media-keys",
|
|
||||||
f"['{"', '".join(keys)}']",
|
|
||||||
]
|
|
||||||
)
|
|
||||||
|
|
||||||
# result['original_message'] = str(keybinding_entries)
|
|
||||||
# result["message"] = str(custom_keybindings)
|
|
||||||
|
|
||||||
# use whatever logic you need to determine whether or not this module
|
|
||||||
# made any modifications to your target
|
|
||||||
# if module.params['new']:
|
|
||||||
result['changed'] = True
|
|
||||||
|
|
||||||
# during the execution of the module, if there is an exception or a
|
|
||||||
# conditional state that effectively causes a failure, run
|
|
||||||
# AnsibleModule.fail_json() to pass in the message and the result
|
|
||||||
# if module.params['name'] == 'fail me':
|
|
||||||
# module.fail_json(msg='You requested this to fail', **result)
|
|
||||||
|
|
||||||
# in the event of a successful module execution, you will want to
|
|
||||||
# simple AnsibleModule.exit_json(), passing the key/value results
|
|
||||||
module.exit_json(**result)
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
|
||||||
run_module()
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
main()
|
|
||||||
|
|
||||||
@@ -7,9 +7,8 @@ $module = [Ansible.Basic.AnsibleModule]::Create($args, @{
|
|||||||
options = @{
|
options = @{
|
||||||
dest = @{ type = 'path' }
|
dest = @{ type = 'path' }
|
||||||
repo = @{ required = $true; aliases = @( 'name' ) }
|
repo = @{ required = $true; aliases = @( 'name' ) }
|
||||||
version = @{default = 'HEAD'; aliases = @('branch')}
|
version = @{ default = 'HEAD' }
|
||||||
remote = @{ default = 'origin' }
|
remote = @{ default = 'origin' }
|
||||||
recursive = @{default = $true; type = 'bool'}
|
|
||||||
executable = @{ default = $null; type = 'path' }
|
executable = @{ default = $null; type = 'path' }
|
||||||
}
|
}
|
||||||
supports_check_mode = $false
|
supports_check_mode = $false
|
||||||
@@ -26,6 +25,19 @@ if (!$git) {
|
|||||||
|
|
||||||
# ================================= Utilities ==================================
|
# ================================= Utilities ==================================
|
||||||
|
|
||||||
|
function Test-SshAcceptNewHostKey {
|
||||||
|
try {
|
||||||
|
$ssh = Get-ExecutablePath 'ssh'
|
||||||
|
} catch {
|
||||||
|
throw 'Remote host is missing ssh command, so you cannot use acceptnewhostkey option.'
|
||||||
|
}
|
||||||
|
$result = Run-Command "$ssh -o StrictHostKeyChecking=accept-new -V"
|
||||||
|
if ( $result.rc -ne 0 ) {
|
||||||
|
return $false
|
||||||
|
}
|
||||||
|
return $true
|
||||||
|
}
|
||||||
|
|
||||||
function Get-AbsolutePath {
|
function Get-AbsolutePath {
|
||||||
[CmdletBinding()]
|
[CmdletBinding()]
|
||||||
param (
|
param (
|
||||||
@@ -70,6 +82,46 @@ function Get-GitDir {
|
|||||||
return $git_dir
|
return $git_dir
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Get-GitSshExecutablePath {
|
||||||
|
if ( $env:GIT_SSH ) {
|
||||||
|
return $env:GIT_SSH
|
||||||
|
}
|
||||||
|
if ( $env:GIT_SSH_COMMAND ) {
|
||||||
|
return $env:GIT_SSH_COMMAND
|
||||||
|
}
|
||||||
|
return Get-ExecutablePath 'ssh'
|
||||||
|
}
|
||||||
|
|
||||||
|
function Test-GitRemoteBranch {
|
||||||
|
[CmdletBinding()]
|
||||||
|
param (
|
||||||
|
[Parameter(Mandatory = $true)] [String] $dest,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $repository,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $branch
|
||||||
|
)
|
||||||
|
$command = "`"$git`" ls-remote $repository -h refs/heads/$branch"
|
||||||
|
$result = Run-Command -command $command
|
||||||
|
if ( $result.stdout.Contains($version) ) {
|
||||||
|
return $true
|
||||||
|
}
|
||||||
|
return $false
|
||||||
|
}
|
||||||
|
|
||||||
|
function Test-GitRemoteTag {
|
||||||
|
[CmdletBinding()]
|
||||||
|
param (
|
||||||
|
[Parameter(Mandatory = $true)] [String] $dest,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $repository,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $tag
|
||||||
|
)
|
||||||
|
$command = "`"$git`" ls-remote $repository -t refs/tags/$tag"
|
||||||
|
$result = Run-Command -command $command
|
||||||
|
if ( $result.stdout.Contains($version) ) {
|
||||||
|
return $true
|
||||||
|
}
|
||||||
|
return $false
|
||||||
|
}
|
||||||
|
|
||||||
function Test-GitLocalChanges {
|
function Test-GitLocalChanges {
|
||||||
[CmdletBinding()]
|
[CmdletBinding()]
|
||||||
param (
|
param (
|
||||||
@@ -83,19 +135,79 @@ function Test-GitLocalChanges {
|
|||||||
return $changes.Lines -gt 0
|
return $changes.Lines -gt 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Get-GitRemoteHead {
|
||||||
|
[CmdletBinding()]
|
||||||
|
param (
|
||||||
|
[Parameter(Mandatory = $true)] [String] $repo,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $dest,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $version,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $remote
|
||||||
|
)
|
||||||
|
$cloning = $false
|
||||||
|
$cwd = $null
|
||||||
|
$tag = $false
|
||||||
|
if ( $remote -eq $repo ) {
|
||||||
|
$cloning = $true
|
||||||
|
} else {
|
||||||
|
$cwd = $dest
|
||||||
|
}
|
||||||
|
if ( $version -eq 'HEAD' ) {
|
||||||
|
if ( $cloning ) {
|
||||||
|
# Cloning the repo, just get the remote's HEAD version.
|
||||||
|
$command = "`"$git`" ls-remote $remote -h HEAD"
|
||||||
|
} else {
|
||||||
|
$head_branch = Get-GitRemoteHeadBranch $module $dest $remote
|
||||||
|
$command = "`"$git`" ls-remote $remote -h refs/heads/$head_branch"
|
||||||
|
}
|
||||||
|
} elseif ( Test-GitRemoteBranch $dest $remote $version ) {
|
||||||
|
$command = "`"$git`" ls-remote $remote -h refs/head/$version"
|
||||||
|
} elseif ( Test-GitRemoteTag $dest $remote $version ) {
|
||||||
|
$tag = $true
|
||||||
|
$command = "`"$git`" ls-remote $remote -t refs/tags/$version*"
|
||||||
|
} else {
|
||||||
|
# Appears to be a sha1, return as-is since it apparently not possible
|
||||||
|
# to check for a specific sha1 on remote.
|
||||||
|
return $version
|
||||||
|
}
|
||||||
|
$result = Run-Command -command $command -working_directory $cwd
|
||||||
|
if ( $result.rc -ne 0 -or $result.stdout.Length -lt 1 ) {
|
||||||
|
throw "Could not determine remote ref for $vesion"
|
||||||
|
}
|
||||||
|
$ref = $result.stdout
|
||||||
|
if ( $tag ) {
|
||||||
|
# Find the dereferenced tag if this is an annotated tag.
|
||||||
|
ForEach ( $tag in $ref.Split([System.Environment]::NewLine) ) {
|
||||||
|
if ( $tag.EndsWith("$version ^{}") ) {
|
||||||
|
$ref = $tag
|
||||||
|
} elseif ( $tag.EndsWith($version) ) {
|
||||||
|
$ref = $tag
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $ref.Split()[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
function Test-GitDetachedHead {
|
||||||
|
[CmdletBinding()]
|
||||||
|
Param (
|
||||||
|
[Parameter(Mandatory = $true)] [String] $dest
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
function Get-GitRemoteHeadBranch {
|
function Get-GitRemoteHeadBranch {
|
||||||
[CmdletBinding()]
|
[CmdletBinding()]
|
||||||
Param (
|
Param (
|
||||||
[Parameter(Mandatory = $true)] [String] $dest,
|
[Parameter(Mandatory = $true)] [String] $dest,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $version,
|
||||||
[Parameter(Mandatory = $true)] [String] $remote
|
[Parameter(Mandatory = $true)] [String] $remote
|
||||||
)
|
)
|
||||||
$command = "`"$git`" symbolic-ref --short refs/remotes/$remote/HEAD"
|
$git_dir = Join-Path $dest '.git'
|
||||||
$result = Run-Command -command $command -working_directory $dest
|
# TODO: Check if the .git is a file. If it is a file, it means that we are
|
||||||
if ($result.rc -ne 0) {
|
# in a submodule structure.
|
||||||
$module.FailJson("Could not determine the default HEAD branch of remote: $remote" ` +
|
$head_file = Join-Path $git_dir 'HEAD'
|
||||||
"$result.stdout $result.stderr")
|
if ( Test-GitDetachedHead $dest ) {
|
||||||
|
$head_file = Join-Path $git_dir 'refs' 'remotes' $remote 'HEAD'
|
||||||
}
|
}
|
||||||
return $result.stdout.Trim().Replace("$remote/", '')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function Get-GitCurrentSha {
|
function Get-GitCurrentSha {
|
||||||
@@ -108,6 +220,44 @@ function Get-GitCurrentSha {
|
|||||||
return $result.stdout.Trim()
|
return $result.stdout.Trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Get-GitRemoteUrl {
|
||||||
|
[CmdletBinding()]
|
||||||
|
Param (
|
||||||
|
[Parameter(Mandatory = $true)] [String] $dest,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $remote
|
||||||
|
)
|
||||||
|
$command = "`"$git`" ls-remote --get-url $remote"
|
||||||
|
$result = Run-Command -command $command -working_directory $dest
|
||||||
|
if ( $result.rc -ne 0 ) {
|
||||||
|
# There was an issue getting the remote URL, most likely command is not
|
||||||
|
# available in this version of Git.
|
||||||
|
return $null
|
||||||
|
}
|
||||||
|
return $result.stdout.Trim()
|
||||||
|
}
|
||||||
|
|
||||||
|
function Set-GitRemoteUrl {
|
||||||
|
[CmdletBinding()]
|
||||||
|
Param (
|
||||||
|
[Parameter(Mandatory = $true)] [String] $dest,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $remote,
|
||||||
|
[Parameter(Mandatory = $true)] [String] $url
|
||||||
|
)
|
||||||
|
# Return if remote URL isn't changing.
|
||||||
|
$remote_url = Get-GitRemoteUrl $dest $remote
|
||||||
|
if ( $remote_url -eq $repo ) {
|
||||||
|
return $false
|
||||||
|
}
|
||||||
|
$command = "`"$git`" remote set-url $remote $url"
|
||||||
|
$result = Run-Command -command $command -working_directory $dest
|
||||||
|
if ( $result.rc -ne 0 ) {
|
||||||
|
$module.FailJson("Failed to set a new url $url for $remote`: $result.stderr")
|
||||||
|
}
|
||||||
|
# Return false if remote_url is null to maintain previous behavior for Git
|
||||||
|
# versions prior to 1.7.5 that lack required functionality.
|
||||||
|
return $remote_url -ne $null
|
||||||
|
}
|
||||||
|
|
||||||
function Invoke-GitClone {
|
function Invoke-GitClone {
|
||||||
[CmdletBinding()]
|
[CmdletBinding()]
|
||||||
Param (
|
Param (
|
||||||
@@ -127,63 +277,42 @@ 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
|
||||||
function Invoke-GitCheckout {
|
$idRef = [System.Security.Principal.NTAccount]::new($userName)
|
||||||
[CmdletBinding()]
|
Get-Item $dest | foreach { `
|
||||||
Param (
|
$_ ; $_ | Get-ChildItem -Force -Recurse `
|
||||||
[Parameter(Mandatory = $true)] [String] $dest,
|
} | foreach { `
|
||||||
[Parameter(Mandatory = $true)] [String] $remote,
|
$acl = $_ | Get-Acl; $acl.SetOwner($idRef); $_ | Set-Acl -AclObject $acl `
|
||||||
[Parameter(Mandatory = $true)] [String] $version
|
|
||||||
)
|
|
||||||
if ($version -eq "HEAD") {
|
|
||||||
$branch = Get-GitRemoteHeadBranch $dest $remote
|
|
||||||
} else {
|
|
||||||
$branch = $version
|
|
||||||
}
|
|
||||||
$result = Run-Command -command "`"$git`" checkout $branch" -working_directory $dest
|
|
||||||
if ($result.rc -ne 0) {
|
|
||||||
$module.FailJson("Failed to checkout version '$version'`n" + $result.stderr)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Invoke-GitFetch {
|
function Invoke-GitFetch {
|
||||||
[CmdletBinding()]
|
[CmdletBinding()]
|
||||||
Param (
|
Param (
|
||||||
|
[Parameter(Mandatory = $true)] [String] $repo,
|
||||||
[Parameter(Mandatory = $true)] [String] $dest,
|
[Parameter(Mandatory = $true)] [String] $dest,
|
||||||
[Parameter(Mandatory = $true)] [String] $remote,
|
[Parameter(Mandatory = $true)] [String] $version,
|
||||||
[Parameter(Mandatory = $true)] [String] $version
|
[Parameter(Mandatory = $true)] [String] $remote
|
||||||
)
|
)
|
||||||
$command = "`"$git`" fetch --tags $remote"
|
$command = "`"$git`" fetch --tags $remote"
|
||||||
$result = Run-Command -command $command -working_directory $dest
|
$result = Run-Command -command $command -working_directory $dest
|
||||||
if ( $result.rc -ne 0 ) {
|
if ( $result.rc -ne 0 ) {
|
||||||
$module.FailJson("Failed to download remote objects and refs:`n" + `
|
$module.FailJson("Failed to download remote objects and refs:" + `
|
||||||
$result.stderr)
|
"$result.stdout $result.stderr")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Invoke-GitPull {
|
function Invoke-GitCheckout {
|
||||||
[CmdletBinding()]
|
[CmdletBinding()]
|
||||||
Param (
|
Param (
|
||||||
[Parameter(Mandatory = $true)] [String] $dest,
|
[Parameter(Mandatory = $true)] [String] $dest,
|
||||||
[Parameter(Mandatory = $true)] [String] $remote,
|
|
||||||
[Parameter(Mandatory = $true)] [String] $version
|
[Parameter(Mandatory = $true)] [String] $version
|
||||||
)
|
)
|
||||||
$result = Run-Command -command "`"$git`" pull $remote $version" -working_directory $dest
|
$result = Run-Command -command "`"$git`" checkout $version" -working_directory $dest
|
||||||
if ( $result.rc -ne 0 ) {
|
if ( $result.rc -ne 0 ) {
|
||||||
$module.FailJson("Failed to pull version '$version' from remote '$origin':`n" + `
|
$module.FailJson("Failed to checkout version '$version': " + `
|
||||||
$result.stderr)
|
"$result.stdout $result.stderr")
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function Invoke-GitSubmoduleUpdate {
|
|
||||||
[CmdletBinding()]
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $dest
|
|
||||||
)
|
|
||||||
$result = Run-Command -command "`"$git`" submodule update --init" -working_directory $dest
|
|
||||||
if ($result.rc -ne 0) {
|
|
||||||
$module.FailJson("Failed to initialized/update submodules:`n" + $result.stderr)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -198,35 +327,18 @@ $gitconfig = Join-Path $git_dir 'config'
|
|||||||
|
|
||||||
$module.Result.before = $null
|
$module.Result.before = $null
|
||||||
|
|
||||||
if (($dest -and ![System.IO.File]::Exists($gitconfig))) {
|
$local_changes = $false
|
||||||
Invoke-GitClone $repo $remote $dest
|
if ( ($dest -and ![System.IO.File]::Exists($gitconfig)) -or (!$dest -and !$clone) ) {
|
||||||
Invoke-GitCheckout $dest $remote $version
|
Invoke-GitClone $repo $remote $dest $version
|
||||||
$module.Result.changed = $true
|
$module.Result.changed = $true
|
||||||
} else {
|
} else {
|
||||||
|
$local_changes = Test-GitLocalChanges $dest
|
||||||
$module.Result.before = Get-GitCurrentSha $dest
|
$module.Result.before = Get-GitCurrentSha $dest
|
||||||
if (Test-GitLocalChanges $dest) {
|
if ( $local_changes ) {
|
||||||
$module.FailJson('Local modifications exist in repository.')
|
$module.FailJson('Local modifications exist in repository.')
|
||||||
}
|
}
|
||||||
Invoke-GitFetch $dest $remote $version
|
# Checkout branch, if $version is HEAD get HEAD branch
|
||||||
Invoke-GitCheckout $dest $remote $version
|
# Pull
|
||||||
Invoke-GitPull $dest $remote $version
|
|
||||||
$module.Result.after = Get-GitCurrentSha $dest
|
|
||||||
if ($module.Result.before -ne $module.Result.after) {
|
|
||||||
$module.Result.changed = $true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($recursive) {
|
|
||||||
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 -Force $dest | foreach { `
|
|
||||||
$_ ; $_ | Get-ChildItem -Force -Recurse `
|
|
||||||
} | foreach { `
|
|
||||||
$acl = $_ | Get-Acl; $acl.SetOwner($idRef); $_ | Set-Acl -AclObject $acl `
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$module.ExitJson()
|
$module.ExitJson()
|
||||||
|
|||||||
@@ -2,21 +2,7 @@
|
|||||||
- import_playbook: LinuxCLI.yaml
|
- import_playbook: LinuxCLI.yaml
|
||||||
- import_playbook: UnixGUI.yaml
|
- import_playbook: UnixGUI.yaml
|
||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
roles:
|
||||||
- role: firefox
|
|
||||||
- role: kitty
|
- role: kitty
|
||||||
- role: guake
|
|
||||||
- role: cider
|
|
||||||
- role: gnome-shell
|
|
||||||
when: "'GNOME' in ansible_env.XDG_CURRENT_DESKTOP"
|
|
||||||
- role: xremap
|
- role: xremap
|
||||||
when: >
|
when: ansible_os_family == "RedHat"
|
||||||
'GNOME' in ansible_env.XDG_CURRENT_DESKTOP and
|
|
||||||
ansible_env.XDG_SESSION_TYPE == 'wayland' and (
|
|
||||||
ansible_os_family == "RedHat" or
|
|
||||||
ansible_os_family == "Debian"
|
|
||||||
)
|
|
||||||
|
|||||||
@@ -1,15 +1,6 @@
|
|||||||
---
|
---
|
||||||
- hosts: localhost
|
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
|
||||||
- role: rpmfusion
|
|
||||||
when: ansible_os_family == 'RedHat' and ansible_distribution == 'Fedora'
|
|
||||||
- import_playbook: UnixCLI.yaml
|
- import_playbook: UnixCLI.yaml
|
||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
roles:
|
roles:
|
||||||
- role: gdb
|
- role: gdb
|
||||||
- role: podman
|
|
||||||
- role: system-info
|
- role: system-info
|
||||||
|
|||||||
@@ -1,26 +1,19 @@
|
|||||||
---
|
---
|
||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
roles:
|
||||||
- role: sudo
|
- role: sudo
|
||||||
when: ansible_user_id != "root"
|
when: ansible_user_id != "root"
|
||||||
- role: python
|
- role: python
|
||||||
|
|
||||||
- role: zsh
|
- role: zsh
|
||||||
tags: unsafe
|
|
||||||
- role: neovim
|
- role: neovim
|
||||||
- role: tmux
|
- role: tmux
|
||||||
tags: unsafe
|
|
||||||
|
|
||||||
- role: ag
|
- role: ag
|
||||||
- role: bash
|
- role: bash
|
||||||
- role: bat
|
- role: bat
|
||||||
- role: curl
|
- role: curl
|
||||||
- role: editline
|
- role: editline
|
||||||
- role: fd
|
|
||||||
- role: fzf
|
- role: fzf
|
||||||
- role: gh
|
- role: gh
|
||||||
- role: git
|
- role: git
|
||||||
@@ -29,7 +22,6 @@
|
|||||||
- role: jp
|
- role: jp
|
||||||
- role: jq
|
- role: jq
|
||||||
- role: readline
|
- role: readline
|
||||||
- role: ripgrep
|
|
||||||
- role: tidy
|
- role: tidy
|
||||||
- role: tree
|
- role: tree
|
||||||
- role: watch
|
- role: watch
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
---
|
---
|
||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
roles:
|
||||||
- role: flatpak
|
|
||||||
when: ansible_os_family != "Darwin"
|
|
||||||
|
|
||||||
- role: 1password
|
- role: 1password
|
||||||
- role: ferdium
|
|
||||||
- role: fonts
|
- role: fonts
|
||||||
- role: obsidian
|
- role: obsidian
|
||||||
|
- role: webcatalog
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
---
|
---
|
||||||
- import_playbook: LinuxCLI.yaml
|
- import_playbook: UnixCLI.yaml
|
||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
roles:
|
||||||
|
- role: gdb
|
||||||
- role: wsl
|
- role: wsl
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
---
|
---
|
||||||
- hosts: windows
|
- hosts: windows
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
roles:
|
||||||
- role: python
|
- role: python
|
||||||
- role: git
|
- role: git
|
||||||
@@ -14,12 +11,10 @@
|
|||||||
- role: ag
|
- role: ag
|
||||||
- role: bat
|
- role: bat
|
||||||
- role: curl
|
- role: curl
|
||||||
- role: fd
|
|
||||||
- role: fzf
|
- role: fzf
|
||||||
- role: gh
|
- role: gh
|
||||||
- role: glab
|
- role: glab
|
||||||
- role: jq
|
- role: jq
|
||||||
- role: ripgrep
|
|
||||||
- role: tree
|
- role: tree
|
||||||
- role: yq
|
- role: yq
|
||||||
|
|
||||||
@@ -28,10 +23,7 @@
|
|||||||
|
|
||||||
- role: 1password
|
- role: 1password
|
||||||
- role: autohotkey
|
- role: autohotkey
|
||||||
- role: cider
|
|
||||||
- role: ferdium
|
|
||||||
- role: firefox
|
- role: firefox
|
||||||
- role: fonts
|
|
||||||
- role: obsidian
|
- role: obsidian
|
||||||
- role: powertoys
|
- role: powertoys
|
||||||
- role: windows-terminal
|
- role: windows-terminal
|
||||||
|
|||||||
@@ -5,18 +5,10 @@
|
|||||||
- role: system-info
|
- role: system-info
|
||||||
- import_playbook: UnixGUI.yaml
|
- import_playbook: UnixGUI.yaml
|
||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
roles:
|
||||||
- role: mas
|
- role: mas
|
||||||
|
|
||||||
- role: hiddenbar
|
|
||||||
- role: iterm
|
- role: iterm
|
||||||
- role: kitty
|
|
||||||
- role: magnet
|
- role: magnet
|
||||||
- role: microsoft-remote-desktop
|
- role: microsoft-remote-desktop
|
||||||
- role: viscosity
|
- role: viscosity
|
||||||
|
|
||||||
- role: macos
|
|
||||||
|
|||||||
@@ -35,11 +35,6 @@
|
|||||||
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
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
---
|
---
|
||||||
- name: add dnf repository key
|
- name: add yum repository key
|
||||||
become: true
|
become: true
|
||||||
rpm_key:
|
rpm_key:
|
||||||
key: https://downloads.1password.com/linux/keys/1password.asc
|
key: https://downloads.1password.com/linux/keys/1password.asc
|
||||||
|
|
||||||
- name: add dnf repository
|
- name: add yum repository
|
||||||
become: true
|
become: true
|
||||||
yum_repository:
|
yum_repository:
|
||||||
name: 1password
|
name: 1password
|
||||||
@@ -15,8 +15,8 @@
|
|||||||
repo_gpgcheck: true
|
repo_gpgcheck: true
|
||||||
gpgkey: ['https://downloads.1password.com/linux/keys/1password.asc']
|
gpgkey: ['https://downloads.1password.com/linux/keys/1password.asc']
|
||||||
|
|
||||||
- name: install dnf package
|
- name: install yum package
|
||||||
become: true
|
become: true
|
||||||
dnf:
|
yum:
|
||||||
name: 1password
|
name: 1password
|
||||||
state: latest
|
state: latest
|
||||||
|
|||||||
@@ -11,20 +11,35 @@
|
|||||||
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: run installer
|
- name: get installer version
|
||||||
when: not app_stat.stat.exists
|
win_shell: |
|
||||||
win_command: '{{installer_exe}}'
|
(Get-ItemProperty {{installer_exe}}).VersionInfo.ProductVersion
|
||||||
|
register: installer_product_version
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
- name: remove installer
|
# FIXME: The [5:] is to account for a mystery "\e[6 q" prefix, not sure if this
|
||||||
win_file:
|
# is consistent across machines or some other oddity.
|
||||||
path: '{{installer_exe}}'
|
- set_fact:
|
||||||
state: absent
|
installer_version: '{{installer_product_version.stdout.strip()[5:]}}'
|
||||||
|
|
||||||
|
- name: run installer
|
||||||
|
when: installed_version is not defined or installed_version != installer_version
|
||||||
|
win_command: '{{installer_exe}}'
|
||||||
|
|
||||||
- name: create start menu shortcut
|
- name: create start menu shortcut
|
||||||
win_shortcut:
|
win_shortcut:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: install dnf package
|
- name: install yum package
|
||||||
become: true
|
become: true
|
||||||
dnf:
|
yum:
|
||||||
name: the_silver_searcher
|
name: the_silver_searcher
|
||||||
state: latest
|
state: latest
|
||||||
|
|||||||
@@ -9,6 +9,10 @@
|
|||||||
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:
|
||||||
|
|||||||
@@ -110,13 +110,3 @@ grey="\001\e[38;5;244m\002"
|
|||||||
reset="\001\e[0m\002"
|
reset="\001\e[0m\002"
|
||||||
|
|
||||||
PS1="$yellow\u$reset@$grey\h$reset "
|
PS1="$yellow\u$reset@$grey\h$reset "
|
||||||
|
|
||||||
# Setup environment variables
|
|
||||||
export PATH=$HOME/.local/bin:$PATH
|
|
||||||
if command -v nvim > /dev/null; then
|
|
||||||
export EDITOR=nvim
|
|
||||||
elif command -v vim > /dev/null; then
|
|
||||||
export EDITOR=vim
|
|
||||||
elif command -v vi > /dev/null; then
|
|
||||||
export EDITOR=vi
|
|
||||||
fi
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: install dnf package
|
- name: install yum package
|
||||||
become: true
|
become: true
|
||||||
dnf:
|
yum:
|
||||||
name: bat
|
name: bat
|
||||||
state: latest
|
state: latest
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
- name: get latest github release
|
- name: get latest github release
|
||||||
uri:
|
uri:
|
||||||
url: https://api.github.com/repos/sharkdp/bat/releases/latest
|
url: https://api.github.com/repos/sharkdp/bat/releases/latest
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: latest
|
register: latest
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family != 'Darwin'
|
|
||||||
|
|
||||||
- name: install chocolatey package
|
|
||||||
when: ansible_os_family == 'Windows'
|
|
||||||
win_chocolatey:
|
|
||||||
name: Cider
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: install flatpak package
|
|
||||||
when: ansible_os_family != 'Windows'
|
|
||||||
become: true
|
|
||||||
flatpak:
|
|
||||||
name: sh.cider.Cider
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: install dnf package
|
- name: install yum package
|
||||||
become: true
|
become: true
|
||||||
dnf:
|
yum:
|
||||||
name: curl
|
name: curl
|
||||||
state: latest
|
state: latest
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install apt package
|
|
||||||
when: ansible_os_family == 'Debian'
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name: fd-find
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: install dnf package
|
|
||||||
when: ansible_os_family == 'RedHat'
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: fd-find
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: install Homebrew package
|
|
||||||
when: ansible_os_family == 'Darwin'
|
|
||||||
homebrew:
|
|
||||||
name: fd
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: install Chocolatey package
|
|
||||||
when: ansible_os_family == 'Windows'
|
|
||||||
win_chocolatey:
|
|
||||||
name: fd
|
|
||||||
state: latest
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install chocolatey package
|
|
||||||
win_chocolatey:
|
|
||||||
name: ferdium
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- set_fact:
|
|
||||||
ferdium_exe: 'C:/Program Files/Ferdium/Ferdium.exe'
|
|
||||||
|
|
||||||
- name: create start menu shortcut
|
|
||||||
win_shortcut:
|
|
||||||
src: '{{ferdium_exe}}'
|
|
||||||
dest: '{{ansible_env.ProgramData}}/Microsoft/Windows/Start Menu/Programs/Ferdium.lnk'
|
|
||||||
icon: '{{ferdium_exe}},0'
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install homebrew package
|
|
||||||
when: ansible_os_family == 'Darwin'
|
|
||||||
homebrew_cask:
|
|
||||||
name: ferdium
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- when: ansible_os_family == 'Windows'
|
|
||||||
include_tasks: Windows.yaml
|
|
||||||
|
|
||||||
- name: install flatpak package
|
|
||||||
when: ansible_os_family != 'Windows' and
|
|
||||||
ansible_os_family != 'Darwin'
|
|
||||||
become: true
|
|
||||||
flatpak:
|
|
||||||
name: org.ferdium.Ferdium
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
---
|
|
||||||
- name: remove snap package
|
|
||||||
become: true
|
|
||||||
snap:
|
|
||||||
name: firefox
|
|
||||||
state: absent
|
|
||||||
|
|
||||||
- name: create keyrings directory
|
|
||||||
become: true
|
|
||||||
file:
|
|
||||||
path: /etc/apt/keyrings
|
|
||||||
mode: '755'
|
|
||||||
state: directory
|
|
||||||
|
|
||||||
- name: install mozilla repo keyring
|
|
||||||
become: true
|
|
||||||
get_url:
|
|
||||||
url: https://packages.mozilla.org/apt/repo-signing-key.gpg
|
|
||||||
dest: /etc/apt/keyrings/packages.mozilla.org.asc
|
|
||||||
|
|
||||||
- name: add mozilla apt repo
|
|
||||||
become: true
|
|
||||||
copy:
|
|
||||||
content: >-
|
|
||||||
deb [signed-by=/etc/apt/keyrings/packages.mozilla.org.asc]
|
|
||||||
https://packages.mozilla.org/apt mozilla main
|
|
||||||
dest: /etc/apt/sources.list.d/mozilla.list
|
|
||||||
|
|
||||||
- name: pin mozilla package
|
|
||||||
become: true
|
|
||||||
copy:
|
|
||||||
content: |
|
|
||||||
Package: *
|
|
||||||
Pin: origin packages.mozilla.org
|
|
||||||
Pin-Priority: 1000
|
|
||||||
dest: /etc/apt/preferences.d/mozilla
|
|
||||||
|
|
||||||
- name: install mozilla package
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name: firefox
|
|
||||||
state: latest
|
|
||||||
allow_downgrade: true
|
|
||||||
update_cache: true
|
|
||||||
|
|
||||||
- name: install gnome shell integration
|
|
||||||
when: "'GNOME' in ansible_env.XDG_CURRENT_DESKTOP"
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name: chrome-gnome-shell
|
|
||||||
state: latest
|
|
||||||
@@ -1,5 +1,2 @@
|
|||||||
---
|
---
|
||||||
- include_tasks: Windows.yaml
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
when: ansible_os_family == 'Windows'
|
|
||||||
- include_tasks: Ubuntu.yaml
|
|
||||||
when: ansible_distribution == 'Ubuntu'
|
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install apt package
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name: flatpak
|
|
||||||
state: latest
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: flatpak
|
|
||||||
state: latest
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
- 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
|
|
||||||
@@ -17,7 +17,6 @@
|
|||||||
- name: get latest release
|
- name: get latest release
|
||||||
uri:
|
uri:
|
||||||
url: https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest
|
url: https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: latest
|
register: latest
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install chocolatey package
|
|
||||||
win_chocolatey:
|
|
||||||
name: nerd-fonts-CascadiaCode
|
|
||||||
state: latest
|
|
||||||
@@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
- 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,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: install dnf package
|
- name: install yum package
|
||||||
become: true
|
become: true
|
||||||
dnf:
|
yum:
|
||||||
name: fzf
|
name: fzf
|
||||||
state: latest
|
state: latest
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: add dnf repository
|
- name: add yum repository
|
||||||
become: true
|
become: true
|
||||||
get_url:
|
get_url:
|
||||||
url: https://cli.github.com/packages/rpm/gh-cli.repo
|
url: https://cli.github.com/packages/rpm/gh-cli.repo
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
- name: get json containing all releases
|
- name: get json containing all releases
|
||||||
win_uri:
|
win_uri:
|
||||||
url: 'https://api.github.com/repos/git-for-windows/git/releases/tags/v{{git_version}}.windows.1'
|
url: 'https://api.github.com/repos/git-for-windows/git/releases/tags/v{{git_version}}.windows.1'
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
return_content: true
|
return_content: true
|
||||||
register: git_release
|
register: git_release
|
||||||
|
|
||||||
|
|||||||
@@ -31,13 +31,17 @@
|
|||||||
- include_tasks: Windows-installer.yaml
|
- include_tasks: Windows-installer.yaml
|
||||||
when: git_run_installer
|
when: git_run_installer
|
||||||
|
|
||||||
# NOTE: If this is failing on first install of git, restart the sshd service.
|
# - name: clone config repos
|
||||||
- name: clone config repos
|
# win_git:
|
||||||
win_git:
|
# repo: '{{item.repo}}'
|
||||||
repo: '{{item.repo}}'
|
# dest: '{{ansible_env.USERPROFILE}}\.config\{{item.name}}'
|
||||||
dest: '{{ansible_env.USERPROFILE}}/.config/{{item.name}}'
|
# version: master
|
||||||
version: master
|
# with_items: '{{git_config_repos}}'
|
||||||
with_items: '{{git_config_repos}}'
|
# - win_owner:
|
||||||
|
# path: '{{ansible_env.USERPROFILE}}\.config\{{item.name}}'
|
||||||
|
# user: Benie
|
||||||
|
# recurse: true
|
||||||
|
# with_items: '{{git_config_repos}}'
|
||||||
|
|
||||||
# - TODO: install pip packages
|
# - TODO: install pip packages
|
||||||
# win_pip:
|
# win_pip:
|
||||||
|
|||||||
@@ -1,49 +0,0 @@
|
|||||||
---
|
|
||||||
- name: stat tea executable
|
|
||||||
stat:
|
|
||||||
path: '{{tea_package_exe}}'
|
|
||||||
register: tea
|
|
||||||
|
|
||||||
- name: get installed version
|
|
||||||
when: tea.stat.exists
|
|
||||||
command: '{{tea_package_exe}} --version'
|
|
||||||
register: tea_version_string
|
|
||||||
|
|
||||||
- name: extract version number
|
|
||||||
when: tea.stat.exists
|
|
||||||
set_fact:
|
|
||||||
installed_version: "{{tea_version_string.stdout |
|
|
||||||
regex_search('^.*(\\d+\\.\\d+\\.\\d+).*golang.*$', '\\1') }}"
|
|
||||||
|
|
||||||
- name: get latest release json
|
|
||||||
uri:
|
|
||||||
url: https://gitea.com/api/v1/repos/gitea/tea//releases/latest
|
|
||||||
register: latest
|
|
||||||
|
|
||||||
- name: check installed version
|
|
||||||
set_fact:
|
|
||||||
install_required: >
|
|
||||||
{{not tea.stat.exists or latest.json.name != 'v' + installed_version[0]}}
|
|
||||||
asset: '{{latest.json.assets | json_query(tea_asset_query)}}'
|
|
||||||
|
|
||||||
- name: create package directory
|
|
||||||
when: install_required
|
|
||||||
become: true
|
|
||||||
file:
|
|
||||||
state: directory
|
|
||||||
path: '{{tea_package_dir}}/bin'
|
|
||||||
|
|
||||||
- name: download package
|
|
||||||
when: install_required
|
|
||||||
become: true
|
|
||||||
get_url:
|
|
||||||
url: '{{asset.browser_download_url}}'
|
|
||||||
dest: '{{tea_package_exe}}'
|
|
||||||
mode: '0755'
|
|
||||||
|
|
||||||
- name: install package
|
|
||||||
when: install_required
|
|
||||||
become: true
|
|
||||||
command:
|
|
||||||
cmd: 'stow --target /usr/local .'
|
|
||||||
chdir: '{{tea_package_dir}}'
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
- when: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
|
|
||||||
include_tasks: Linux.yaml
|
|
||||||
|
|
||||||
- when: ansible_os_family == 'Windows'
|
|
||||||
include_tasks: Windows.yaml
|
|
||||||
|
|
||||||
- name: install homebrew package
|
|
||||||
when: ansible_os_family == 'Darwin'
|
|
||||||
homebrew:
|
|
||||||
name: tea
|
|
||||||
state: latest
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
---
|
|
||||||
tea_package_dir: /usr/local/stow/tea
|
|
||||||
tea_package_exe: '{{tea_package_dir}}/bin/tea'
|
|
||||||
tea_asset_query: '[?contains(name, `tea-`)] | [?contains(name, `linux-amd64`)] | [0]'
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: "'GNOME' in ansible_env.XDG_CURRENT_DESKTOP"
|
|
||||||
|
|
||||||
- name: install gnome-tweaks
|
|
||||||
become: true
|
|
||||||
package:
|
|
||||||
name: gnome-tweaks
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
# NOTE: Use this command to see default keybindings
|
|
||||||
# gsettings list-recursively | grep -i -E 'media-keys|keybindings'
|
|
||||||
# NOTE: Use this command to inspect the current state of the custom keybindings
|
|
||||||
# dconf dump / | sed -n '/\[org.gnome.settings-daemon.plugins.media-keys/,/^$/p'
|
|
||||||
|
|
||||||
- set_fact:
|
|
||||||
custom_keybindings:
|
|
||||||
# TODO: 1Password Quick Access
|
|
||||||
# [org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0]
|
|
||||||
# binding='<Shift><Alt>space'
|
|
||||||
# command='1password --quick-access'
|
|
||||||
# name='1Password Quick Access'
|
|
||||||
- binding: <Shift><Alt>space
|
|
||||||
command: 1password --quick-access
|
|
||||||
name: 1Password Quick Access
|
|
||||||
|
|
||||||
# TODO: Guake toggle - this requires removing a default binding
|
|
||||||
# [org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1]
|
|
||||||
# binding='<Super>space'
|
|
||||||
# command='guake-toggle'
|
|
||||||
# name='Guake Toggle'
|
|
||||||
- binding: <Super>space
|
|
||||||
command: guake-toggle
|
|
||||||
name: Guake Toggle
|
|
||||||
|
|
||||||
# TODO: List of custom-keybindings
|
|
||||||
# [org/gnome/settings-daemon/plugins/media-keys]
|
|
||||||
# custom-keybindings=['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/', '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/']
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
|
|
||||||
|
|
||||||
- name: install package
|
|
||||||
package:
|
|
||||||
name: guake
|
|
||||||
state: latest
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family == 'Darwin'
|
|
||||||
|
|
||||||
- name: install homebrew package
|
|
||||||
homebrew_cask:
|
|
||||||
name: hiddenbar
|
|
||||||
state: latest
|
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
- name: get latest github release
|
- name: get latest github release
|
||||||
uri:
|
uri:
|
||||||
url: https://api.github.com/repos/jmespath/jp/releases/latest
|
url: https://api.github.com/repos/jmespath/jp/releases/latest
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: latest
|
register: latest
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
|
|||||||
@@ -19,7 +19,6 @@
|
|||||||
- name: get latest release
|
- name: get latest release
|
||||||
uri:
|
uri:
|
||||||
url: 'https://api.github.com/repos/jmespath/jp/releases/latest'
|
url: 'https://api.github.com/repos/jmespath/jp/releases/latest'
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: latest
|
register: latest
|
||||||
|
|
||||||
- name: determine if jp needs installed
|
- name: determine if jp needs installed
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install homebrew package
|
|
||||||
homebrew_cask:
|
|
||||||
name: kitty
|
|
||||||
state: latest
|
|
||||||
@@ -1,17 +1,5 @@
|
|||||||
---
|
---
|
||||||
- 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:
|
||||||
|
|||||||
2
roles/llvm/tasks/Linux Mint.yaml
Normal file
2
roles/llvm/tasks/Linux Mint.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: Ubuntu.yaml
|
||||||
2
roles/llvm/tasks/Pop!_OS.yaml
Normal file
2
roles/llvm/tasks/Pop!_OS.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: Ubuntu.yaml
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
- name: get latest stable github release
|
- name: get latest stable github release
|
||||||
uri:
|
uri:
|
||||||
url: https://api.github.com/repos/llvm/llvm-project/releases/latest
|
url: https://api.github.com/repos/llvm/llvm-project/releases/latest
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: llvm_latest
|
register: llvm_latest
|
||||||
|
|
||||||
- name: read /etc/os-release
|
- name: read /etc/os-release
|
||||||
|
|||||||
@@ -1,2 +1,5 @@
|
|||||||
---
|
---
|
||||||
- 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,9 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family == 'Darwin'
|
|
||||||
|
|
||||||
- name: disable creation of .DS_Store in directories
|
|
||||||
osx_defaults:
|
|
||||||
domain: com.apple.desktopservices
|
|
||||||
key: DSDontWriteNetworkStores
|
|
||||||
value: 'true'
|
|
||||||
@@ -6,12 +6,6 @@
|
|||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
neovim_pip_packages: >
|
neovim_pip_packages: '{{neovim_pip_packages + ["pynvim"]}}'
|
||||||
{{
|
|
||||||
neovim_pip_packages + [
|
|
||||||
"pynvim",
|
|
||||||
"greenlet"
|
|
||||||
]
|
|
||||||
}}
|
|
||||||
|
|
||||||
- include_tasks: Unix.yaml
|
- include_tasks: Unix.yaml
|
||||||
|
|||||||
@@ -1,114 +1,18 @@
|
|||||||
---
|
---
|
||||||
# Don't neovim packages because they are all behind, even Debian unstable.
|
- name: add neovim stable ppa
|
||||||
# Instead use the latest pre-build Linux package from GitHub, then stow them
|
when: ansible_distribution == 'Ubuntu' and
|
||||||
# into /usr/local.
|
ansible_distribution_version == '20.04'
|
||||||
|
|
||||||
- name: remove apt package
|
|
||||||
become: true
|
become: true
|
||||||
apt:
|
apt_repository:
|
||||||
name: neovim
|
repo: ppa:neovim-ppa/stable
|
||||||
state: absent
|
update_cache: true
|
||||||
|
|
||||||
- name: install gnu stow for managing tar.gz package
|
- name: install apt package
|
||||||
become: true
|
become: true
|
||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
- stow
|
- neovim
|
||||||
|
- python3-neovim
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- name: install python provider pip package
|
|
||||||
become: true
|
|
||||||
pip:
|
|
||||||
name: pynvim
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: stat installed executable
|
|
||||||
stat:
|
|
||||||
path: /usr/local/bin/nvim
|
|
||||||
register: nvim
|
|
||||||
|
|
||||||
- name: get installed version
|
|
||||||
when: nvim.stat.exists
|
|
||||||
command: nvim --version
|
|
||||||
register: nvim_version
|
|
||||||
changed_when: false
|
|
||||||
|
|
||||||
- when: nvim.stat.exists
|
|
||||||
set_fact:
|
|
||||||
installed_version: '{{nvim_version.stdout_lines[0][5:]}}'
|
|
||||||
|
|
||||||
- name: get latest version
|
|
||||||
uri:
|
|
||||||
url: https://api.github.com/repos/neovim/neovim/releases/latest
|
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: latest
|
|
||||||
|
|
||||||
- set_fact:
|
|
||||||
install_required:
|
|
||||||
'{{installed_version is not defined or
|
|
||||||
installed_version != latest.json.tag_name}}'
|
|
||||||
asset_query: '[?contains(name, `nvim-linux64.tar.gz`)]'
|
|
||||||
package_dir: '/usr/local/lib/nvim'
|
|
||||||
- set_fact:
|
|
||||||
uninstall_required: '{{nvim.stat.exists and install_required}}'
|
|
||||||
asset: '{{latest.json.assets | json_query(asset_query)}}'
|
|
||||||
package_path: '{{package_dir}}/{{latest.json.name}}'
|
|
||||||
|
|
||||||
- name: uninstall old package from /usr/local
|
|
||||||
when: uninstall_required
|
|
||||||
become: true
|
|
||||||
command:
|
|
||||||
cmd: 'stow --delete --target /usr/local .'
|
|
||||||
chdir: '{{package_dir}}/nvim-linux64'
|
|
||||||
|
|
||||||
- name: remove old package
|
|
||||||
become: true
|
|
||||||
when: uninstall_required
|
|
||||||
file:
|
|
||||||
path: '{{package_dir}}/nvim-linux64'
|
|
||||||
state: absent
|
|
||||||
|
|
||||||
- name: create package directory
|
|
||||||
become: true
|
|
||||||
file:
|
|
||||||
path: '{{package_dir}}'
|
|
||||||
state: directory
|
|
||||||
|
|
||||||
- name: download package archive
|
|
||||||
when: install_required
|
|
||||||
become: true
|
|
||||||
get_url:
|
|
||||||
url: '{{asset[0].browser_download_url}}'
|
|
||||||
dest: '{{package_path}}'
|
|
||||||
|
|
||||||
- name: extract package archive
|
|
||||||
when: install_required
|
|
||||||
become: true
|
|
||||||
unarchive:
|
|
||||||
src: '{{package_path}}'
|
|
||||||
dest: '{{package_dir}}'
|
|
||||||
|
|
||||||
- name: remove downloaded archive
|
|
||||||
when: install_required
|
|
||||||
become: true
|
|
||||||
file:
|
|
||||||
path: '{{package_path}}'
|
|
||||||
state: absent
|
|
||||||
|
|
||||||
- name: move man to share/man
|
|
||||||
when: install_required
|
|
||||||
become: true
|
|
||||||
command:
|
|
||||||
argv:
|
|
||||||
- mv
|
|
||||||
- '{{package_dir}}/nvim-linux64/man'
|
|
||||||
- '{{package_dir}}/nvim-linux64/share'
|
|
||||||
|
|
||||||
- name: install package to /usr/local
|
|
||||||
when: install_required
|
|
||||||
become: true
|
|
||||||
command:
|
|
||||||
cmd: 'stow --target /usr/local .'
|
|
||||||
chdir: '{{package_dir}}/nvim-linux64'
|
|
||||||
|
|
||||||
- include_tasks: Unix.yaml
|
- include_tasks: Unix.yaml
|
||||||
|
|||||||
@@ -4,9 +4,9 @@
|
|||||||
|
|
||||||
- name: clone config repo
|
- name: clone config repo
|
||||||
git:
|
git:
|
||||||
repo: git@code.infektor.net:config/nvim.git
|
repo: git@code.infektor.net:config/vim.git
|
||||||
dest: '{{vim_config_dir}}'
|
dest: '{{vim_config_dir}}'
|
||||||
version: main
|
version: master
|
||||||
|
|
||||||
- name: install pip packages
|
- name: install pip packages
|
||||||
pip:
|
pip:
|
||||||
|
|||||||
@@ -26,13 +26,6 @@
|
|||||||
file_type: directory
|
file_type: directory
|
||||||
register: found_plugins
|
register: found_plugins
|
||||||
|
|
||||||
- set_fact:
|
|
||||||
backslashes: '\\'
|
|
||||||
forwardslash: '/'
|
|
||||||
- set_fact:
|
|
||||||
managed_plugins: "{{managed_plugins | replace(backslashes, forwardslash)}}"
|
|
||||||
found_plugins: "{{found_plugins | replace(backslashes, forwardslash)}}"
|
|
||||||
|
|
||||||
- name: remove found plugins which are not in the managed list
|
- name: remove found plugins which are not in the managed list
|
||||||
win_file:
|
win_file:
|
||||||
path: '{{item.path}}'
|
path: '{{item.path}}'
|
||||||
|
|||||||
@@ -8,12 +8,20 @@
|
|||||||
- set_fact:
|
- set_fact:
|
||||||
vim_config_dir: '{{ansible_env.LOCALAPPDATA}}\nvim'
|
vim_config_dir: '{{ansible_env.LOCALAPPDATA}}\nvim'
|
||||||
|
|
||||||
- name: clone config repo
|
# - name: clone config repo
|
||||||
win_git:
|
# win_git:
|
||||||
repo: git@code.infektor.net:config/nvim.git
|
# repo: git@code.infektor.net:config/vim.git
|
||||||
dest: '{{vim_config_dir}}'
|
# dest: '{{vim_config_dir}}'
|
||||||
branch: main
|
# branch: master
|
||||||
|
# # clone: false
|
||||||
|
# update: true
|
||||||
|
# - win_owner:
|
||||||
|
# path: '{{vim_config_dir}}'
|
||||||
|
# user: Benie
|
||||||
|
# recurse: true
|
||||||
|
|
||||||
|
# - TODO: neovim set repo email
|
||||||
|
# win_git_config:
|
||||||
# - TODO: neovim install pip packages
|
# - TODO: neovim install pip packages
|
||||||
# win_pip:
|
# win_pip:
|
||||||
# name: '{{neovim_pip_packages}}'
|
# name: '{{neovim_pip_packages}}'
|
||||||
@@ -39,18 +47,10 @@
|
|||||||
src: '{{vim_config_dir}}/tasks.yaml'
|
src: '{{vim_config_dir}}/tasks.yaml'
|
||||||
dest: vim_config_tasks.yaml
|
dest: vim_config_tasks.yaml
|
||||||
flat: true
|
flat: true
|
||||||
changed_when: false
|
|
||||||
|
|
||||||
- when: config_repo_tasks.stat.exists
|
- when: config_repo_tasks.stat.exists
|
||||||
include_tasks: vim_config_tasks.yaml
|
include_tasks: vim_config_tasks.yaml
|
||||||
|
|
||||||
- name: remove fetched tasks
|
|
||||||
file:
|
|
||||||
state: absent
|
|
||||||
path: vim_config_tasks.yaml
|
|
||||||
changed_when: false
|
|
||||||
delegate_to: localhost
|
|
||||||
|
|
||||||
- when: ansible_os_family != "Windows" and
|
- when: ansible_os_family != "Windows" and
|
||||||
plugin_dir is defined and plugins is defined
|
plugin_dir is defined and plugins is defined
|
||||||
include_tasks: 'Unix-plugins.yaml'
|
include_tasks: 'Unix-plugins.yaml'
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: install dnf package
|
- name: install yum package
|
||||||
become: true
|
become: true
|
||||||
dnf:
|
yum:
|
||||||
name: nodejs
|
name: nodejs
|
||||||
state: latest
|
state: latest
|
||||||
|
|||||||
@@ -1,32 +1,75 @@
|
|||||||
---
|
---
|
||||||
- name: install flatpak package
|
# TODO: Prefer Flatpak over AppImage if available
|
||||||
become: true
|
|
||||||
flatpak:
|
|
||||||
name: md.obsidian.Obsidian
|
|
||||||
|
|
||||||
# Remove old appimage if it exists
|
- name: stat symlink
|
||||||
- name: stat appimage symlink
|
|
||||||
stat:
|
stat:
|
||||||
path: '{{ansible_env.HOME}}/.local/bin/Obsidian'
|
path: '{{ansible_env.HOME}}/.local/bin/Obsidian'
|
||||||
register: symlink_file
|
register: symlink_file
|
||||||
|
|
||||||
|
- name: get latest release
|
||||||
|
uri:
|
||||||
|
url: https://api.github.com/repos/obsidianmd/obsidian-releases/releases/latest
|
||||||
|
register: latest
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
|
appimage: 'Obsidian-{{latest.json.name}}.AppImage'
|
||||||
|
- set_fact:
|
||||||
|
filepath: '{{ansible_env.HOME}}/.local/bin/{{appimage}}'
|
||||||
iconpath: 'share/icons/hicolor/512x512/apps/obsidian.png'
|
iconpath: 'share/icons/hicolor/512x512/apps/obsidian.png'
|
||||||
- name: remove appimage icon file
|
asset_query: '[?contains(name, `{{appimage}}`)] | [0]'
|
||||||
|
- set_fact:
|
||||||
|
needs_installed:
|
||||||
|
'{{not symlink_file.stat.exists or symlink_file.stat.lnk_source != filepath}}'
|
||||||
|
asset: '{{latest.json.assets | to_json | from_json | json_query(asset_query)}}'
|
||||||
|
|
||||||
|
- name: download latest version
|
||||||
|
get_url:
|
||||||
|
url: '{{asset.browser_download_url}}'
|
||||||
|
dest: '{{filepath}}'
|
||||||
|
mode: '0755'
|
||||||
|
|
||||||
|
- name: create directories
|
||||||
file:
|
file:
|
||||||
|
path: '{{item}}'
|
||||||
|
state: directory
|
||||||
|
with_items:
|
||||||
|
- '{{ansible_env.HOME}}/.local/bin'
|
||||||
|
- '{{ansible_env.HOME}}/.local/share/icons/hicolor/512x512/apps'
|
||||||
|
|
||||||
|
- name: create symlink
|
||||||
|
file:
|
||||||
|
src: '{{filepath}}'
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/bin/Obsidian'
|
||||||
|
state: link
|
||||||
|
|
||||||
|
- name: extract squashfs-root for app icon
|
||||||
|
when: needs_installed
|
||||||
|
command:
|
||||||
|
cmd: '{{ansible_env.HOME}}/.local/bin/Obsidian --appimage-extract'
|
||||||
|
chdir: '/tmp'
|
||||||
|
|
||||||
|
- name: copy icon file
|
||||||
|
when: needs_installed
|
||||||
|
copy:
|
||||||
|
src: '/tmp/squashfs-root/usr/{{iconpath}}'
|
||||||
dest: '{{ansible_env.HOME}}/.local/{{iconpath}}'
|
dest: '{{ansible_env.HOME}}/.local/{{iconpath}}'
|
||||||
state: absent
|
|
||||||
- name: remove appimage desktop file
|
- name: remove squashfs-root directory
|
||||||
|
when: needs_installed
|
||||||
file:
|
file:
|
||||||
dest: '{{ansible_env.HOME}}/.local/share/applications/obsidian-obsidian.desktop'
|
path: '/tmp/squashfs-root'
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
|
- name: create desktop file
|
||||||
|
template:
|
||||||
|
src: obsidian.desktop.j2
|
||||||
|
dest: '{{ansible_env.HOME}}/.local/share/applications/obsidian-obsidian.desktop'
|
||||||
|
notify: install desktop menu
|
||||||
|
|
||||||
- name: remove old appimage
|
- name: remove old appimage
|
||||||
when: "'lnk_source' in symlink_file.stat"
|
when: needs_installed and symlink_file.stat.exists
|
||||||
file:
|
file:
|
||||||
path: '{{symlink_file.stat.lnk_source}}'
|
path: '{{symlink_file.stat.lnk_source}}'
|
||||||
state: absent
|
state: absent
|
||||||
- name: remove appimage symlink
|
|
||||||
file:
|
|
||||||
path: '{{ansible_env.HOME}}/.local/bin/Obsidian'
|
|
||||||
state: absent
|
|
||||||
|
|
||||||
- include_tasks: Unix.yaml
|
- include_tasks: Unix.yaml
|
||||||
|
|||||||
@@ -12,3 +12,7 @@
|
|||||||
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
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ Name=Obsidian
|
|||||||
Exec={{ansible_env.HOME}}/.local/bin/Obsidian
|
Exec={{ansible_env.HOME}}/.local/bin/Obsidian
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Icon={{ansible_env.HOME}}/.local/{{iconpath}}
|
Icon=obsidian
|
||||||
StartupWMClass=Obsidian
|
StartupWMClass=Obsidian
|
||||||
X-AppImage-Version={{latest.json.name}}
|
X-AppImage-Version={{latest.json.name}}
|
||||||
Comment=Private and flexible note‑taking app that adapts to the way you think.
|
Comment=Private and flexible note‑taking app that adapts to the way you think.
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install apt package
|
|
||||||
when: ansible_os_family == 'Debian'
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name: podman
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: install dnf package
|
|
||||||
when: ansible_os_family == 'RedHat'
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: podman
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: install Homebrew package
|
|
||||||
when: ansible_os_family == 'Darwin'
|
|
||||||
homebrew:
|
|
||||||
name: podman-desktop
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: install Chocolatey package
|
|
||||||
when: ansible_os_family == 'Windows'
|
|
||||||
win_chocolatey:
|
|
||||||
name: podman-desktop
|
|
||||||
state: latest
|
|
||||||
@@ -5,9 +5,13 @@
|
|||||||
|
|
||||||
- name: clone config repos
|
- name: clone config repos
|
||||||
win_git:
|
win_git:
|
||||||
repo: https://code.infektor.net/config/WindowsPowerShell.git
|
repo: git@code.infektor.net:config/WindowsPowerShell.git
|
||||||
dest: '{{powershell_config_dir}}'
|
dest: '{{powershell_config_dir}}'
|
||||||
branch: master
|
branch: master
|
||||||
|
- win_owner:
|
||||||
|
path: '{{powershell_config_dir}}'
|
||||||
|
user: Benie
|
||||||
|
recurse: true
|
||||||
|
|
||||||
- name: install chocolatey package
|
- name: install chocolatey package
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: install dnf packages
|
- name: install yum packages
|
||||||
become: true
|
become: true
|
||||||
dnf:
|
yum:
|
||||||
name:
|
name:
|
||||||
- python3
|
- python3
|
||||||
- python3-pip
|
- python3-pip
|
||||||
|
|||||||
@@ -4,6 +4,8 @@
|
|||||||
repo: git@code.infektor.net:config/python.git
|
repo: git@code.infektor.net:config/python.git
|
||||||
dest: ~/.config/python
|
dest: ~/.config/python
|
||||||
|
|
||||||
|
# TODO: set repo email
|
||||||
|
|
||||||
- name: create config directories
|
- name: create config directories
|
||||||
file:
|
file:
|
||||||
state: directory
|
state: directory
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
# TODO: - name: install config repo
|
# TODO: - name: install config repo
|
||||||
|
# TODO: - name: set repo email
|
||||||
# TODO: - name: install pip packages
|
# TODO: - name: install pip packages
|
||||||
# TODO: - name: create config directories/files
|
# TODO: - name: create config directories/files
|
||||||
|
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install apt package
|
|
||||||
when: ansible_os_family == 'Debian'
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name: ripgrep
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: install dnf package
|
|
||||||
when: ansible_os_family == 'RedHat'
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: ripgrep
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: install Homebrew package
|
|
||||||
when: ansible_os_family == 'Darwin'
|
|
||||||
homebrew:
|
|
||||||
name: ripgrep
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- name: install Chocolatey package
|
|
||||||
when: ansible_os_family == 'Windows'
|
|
||||||
win_chocolatey:
|
|
||||||
name: ripgrep
|
|
||||||
state: latest
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family == 'RedHat' and ansible_distribution == 'Fedora'
|
|
||||||
|
|
||||||
- name: install rpm fusion free gpg key
|
|
||||||
become: true
|
|
||||||
rpm_key:
|
|
||||||
key: 'https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-free-fedora-2020'
|
|
||||||
state: present
|
|
||||||
|
|
||||||
- name: install rpmfusion free repository
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name:
|
|
||||||
'https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ansible_distribution_major_version}}.noarch.rpm'
|
|
||||||
state: present
|
|
||||||
validate_certs: no
|
|
||||||
|
|
||||||
- name: install rpmfusion non-free gpg key
|
|
||||||
become: true
|
|
||||||
rpm_key:
|
|
||||||
key: 'https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020'
|
|
||||||
state: present
|
|
||||||
|
|
||||||
- name: install rpmfusion non-free repository
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name:
|
|
||||||
'https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ansible_distribution_major_version}}.noarch.rpm'
|
|
||||||
state: present
|
|
||||||
validate_certs: no
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
---
|
---
|
||||||
# TODO: create a launchd module that handles user mode services
|
# TODO:
|
||||||
# cp $script_dir/system-info.plist ~/Library/LaunchAgents/system-info.plist
|
# cp $script_dir/system-info.plist ~/Library/LaunchAgents/system-info.plist
|
||||||
# launchctl load -w ~/Library/LaunchAgents/system-info.plist
|
# launchctl load -w ~/Library/LaunchAgents/system-info.plist
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: install dnf packages
|
- name: install yum packages
|
||||||
become: true
|
become: true
|
||||||
dnf:
|
yum:
|
||||||
name:
|
name:
|
||||||
- tmux
|
- tmux
|
||||||
- sysstat
|
- sysstat
|
||||||
|
|||||||
@@ -7,4 +7,6 @@
|
|||||||
dest: ~/.config/tmux
|
dest: ~/.config/tmux
|
||||||
version: master
|
version: master
|
||||||
|
|
||||||
|
# TODO: - name: set repo email
|
||||||
|
|
||||||
- include_tasks: ~/.config/tmux/tasks.yaml
|
- include_tasks: ~/.config/tmux/tasks.yaml
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: create wsl.conf
|
- name: create wsl.conf
|
||||||
become: true
|
|
||||||
template:
|
template:
|
||||||
src: templates/wsl.conf.j2
|
src: templates/wsl.conf.j2
|
||||||
dest: /etc/wsl.conf
|
dest: /etc/wsl.conf
|
||||||
@@ -35,6 +34,28 @@
|
|||||||
dest: external
|
dest: external
|
||||||
state: directory
|
state: directory
|
||||||
|
|
||||||
|
- name: clone ansible win_git module
|
||||||
|
git:
|
||||||
|
repo: https://github.com/tivrobo/ansible-win_git.git
|
||||||
|
dest: external/ansible-win_git
|
||||||
|
version: master
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
modules_dir: ~/.config/local/modules
|
||||||
|
|
||||||
|
- name: create ansible modules directory
|
||||||
|
file:
|
||||||
|
dest: '{{modules_dir}}'
|
||||||
|
state: directory
|
||||||
|
|
||||||
|
- name: copy win_git files to ansible modules directory
|
||||||
|
copy:
|
||||||
|
src: '~/.config/local/external/ansible-win_git/{{item}}'
|
||||||
|
dest: '{{modules_dir}}/{{item}}'
|
||||||
|
with_items:
|
||||||
|
- win_git.ps1
|
||||||
|
- win_git.py
|
||||||
|
|
||||||
- name: read /etc/resolv.conf file contents
|
- name: read /etc/resolv.conf file contents
|
||||||
set_fact:
|
set_fact:
|
||||||
resolv_conf: '{{lookup("ansible.builtin.file", "/etc/resolv.conf")}}'
|
resolv_conf: '{{lookup("ansible.builtin.file", "/etc/resolv.conf")}}'
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
---
|
---
|
||||||
- assert:
|
- assert:
|
||||||
that: >
|
that: ansible_env.XDG_CURRENT_DESKTOP == "GNOME" and
|
||||||
'GNOME' in ansible_env.XDG_CURRENT_DESKTOP and
|
ansible_env.XDG_SESSION_TYPE == "wayland"
|
||||||
ansible_env.XDG_SESSION_TYPE == 'wayland'
|
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
install_dir: '{{ansible_env.HOME}}/.local/bin'
|
install_dir: '{{ansible_env.HOME}}/.local/bin'
|
||||||
@@ -30,21 +29,18 @@
|
|||||||
- name: get latest release
|
- name: get latest release
|
||||||
uri:
|
uri:
|
||||||
url: https://api.github.com/repos/k0kubun/xremap/releases/latest
|
url: https://api.github.com/repos/k0kubun/xremap/releases/latest
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: latest
|
register: latest
|
||||||
|
|
||||||
- name: determine if install needed
|
- name: determine if install needed
|
||||||
set_fact:
|
set_fact:
|
||||||
needs_installed:
|
needs_installed:
|
||||||
'{{not executable.stat.exists or installed_version != latest.json.name}}'
|
'{{not executable.stat.exists or installed_version != latest.json.name}}'
|
||||||
xdg_current_desktop:
|
|
||||||
"{{ansible_env.XDG_CURRENT_DESKTOP | regex_replace('(.*:)?(.*)', '\\2')}}"
|
|
||||||
|
|
||||||
- name: construct asset query
|
- name: construct asset query
|
||||||
set_fact:
|
set_fact:
|
||||||
asset_query: >
|
asset_query: >
|
||||||
[?contains(name, `xremap-linux-{{ansible_architecture}}-{{
|
[?contains(name, `xremap-linux-{{ansible_architecture}}-{{
|
||||||
xdg_current_desktop | lower}}.zip`)] | [0]
|
ansible_env.XDG_CURRENT_DESKTOP | lower}}.zip`)] | [0]
|
||||||
- name: get release asset
|
- name: get release asset
|
||||||
set_fact:
|
set_fact:
|
||||||
asset: '{{latest.json.assets | to_json | from_json | json_query(asset_query)}}'
|
asset: '{{latest.json.assets | to_json | from_json | json_query(asset_query)}}'
|
||||||
@@ -85,14 +81,6 @@
|
|||||||
append: true
|
append: true
|
||||||
groups: input
|
groups: input
|
||||||
|
|
||||||
- name: load the uinput kernel module
|
|
||||||
when: ansible_os_family == 'Debian'
|
|
||||||
become: true
|
|
||||||
copy:
|
|
||||||
content: |
|
|
||||||
uinput
|
|
||||||
dest: /etc/modules-load.d/uinput.conf
|
|
||||||
|
|
||||||
# TODO: This works for on Fedora, author uses it on Ubuntu so I assume Debian
|
# TODO: This works for on Fedora, author uses it on Ubuntu so I assume Debian
|
||||||
# will work too. Arch and other distros are potentially different see the docs
|
# will work too. Arch and other distros are potentially different see the docs
|
||||||
# https://github.com/k0kubun/xremap
|
# https://github.com/k0kubun/xremap
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
- name: get latest github release
|
- name: get latest github release
|
||||||
uri:
|
uri:
|
||||||
url: https://api.github.com/repos/mikefarah/yq/releases/latest
|
url: https://api.github.com/repos/mikefarah/yq/releases/latest
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: latest
|
register: latest
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
|
|||||||
@@ -19,7 +19,6 @@
|
|||||||
- name: get latest release
|
- name: get latest release
|
||||||
uri:
|
uri:
|
||||||
url: 'https://api.github.com/repos/mikefarah/yq/releases/latest'
|
url: 'https://api.github.com/repos/mikefarah/yq/releases/latest'
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: latest
|
register: latest
|
||||||
|
|
||||||
- name: determine if yq needs installed
|
- name: determine if yq needs installed
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: install dnf packages
|
- name: install yum packages
|
||||||
become: true
|
become: true
|
||||||
dnf:
|
yum:
|
||||||
name:
|
name:
|
||||||
- zsh
|
- zsh
|
||||||
- pinentry-tty
|
- pinentry-tty
|
||||||
|
|||||||
@@ -61,11 +61,6 @@
|
|||||||
dest: ~/.local/bin/cmake-uninstall
|
dest: ~/.local/bin/cmake-uninstall
|
||||||
- src: ~/.config/zsh/$
|
- src: ~/.config/zsh/$
|
||||||
dest: ~/.local/bin/$
|
dest: ~/.local/bin/$
|
||||||
- src: ~/.config/zsh/url/url
|
|
||||||
dest: ~/.local/bin/url
|
|
||||||
- src: ~/.config/zsh/url/_url
|
|
||||||
dest: ~/.local/share/zsh/site-functions/_url
|
|
||||||
|
|
||||||
loop_control:
|
loop_control:
|
||||||
label: '{{item.dest}}'
|
label: '{{item.dest}}'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user