diff --git a/bundles/macbook/files/macbook-update b/bundles/macbook/files/macbook-update new file mode 100644 index 0000000..67ce7c0 --- /dev/null +++ b/bundles/macbook/files/macbook-update @@ -0,0 +1,33 @@ +#!/bin/bash -l + +xcode-select --install + +git -C ~/.zsh/oh-my-zsh pull + +brew upgrade +brew upgrade --cask --greedy + +sudo softwareupdate -ia --verbose + +mwi /U/m/Pr/c git:(master) defaults write com.apple.dock autohide-time-modifier -float 0.2 +mwi /U/m/Pr/c git:(master) killall Dock +mwi /U/m/Pr/c git:(master) defaults write com.apple.dock autohide-time-modifier -float 0.16 + +if test "$(defaults read com.apple.dock autohide-time-modifier)" -ne 0.16 +then + defaults write com.apple.dock autohide-time-modifier -float 0.16 + RESTART_DOCK=TRUE +fi + +if test "$(defaults read com.apple.dock autohide-delay)" -ne 0 +then + defaults write com.apple.dock autohide-delay -float 0 + RESTART_DOCK=TRUE +fi + +if test "$RESTART_DOCK" = TRUE +then + killall Dock +fi + +sudo systemsetup -setremotelogin on diff --git a/bundles/macbook/items.py b/bundles/macbook/items.py new file mode 100644 index 0000000..8736e7e --- /dev/null +++ b/bundles/macbook/items.py @@ -0,0 +1,12 @@ +directories['/Users/mwiegand/.config/bundlewrap/lock'] = {} + +files['/Users/mwiegand/.bin/macbook-update'] = { + 'mode': '755', +} + +for element in [*files.values(), *directories.values()]: + element.update({ + 'owner': 'mwiegand', + 'group': 'staff', + **element, + }) diff --git a/bundles/wol-waker/metadata.py b/bundles/wol-waker/metadata.py index 7624612..610bd3e 100644 --- a/bundles/wol-waker/metadata.py +++ b/bundles/wol-waker/metadata.py @@ -16,7 +16,7 @@ def user(metadata): 'authorized_users': { f'root@{node.name}' for node in repo.nodes - if node.dummy == False + if node.dummy == False and node.has_bundle('ssh') }, }, }, diff --git a/groups/all.py b/groups/all.py index f0fd3ac..0967ef4 100644 --- a/groups/all.py +++ b/groups/all.py @@ -1,22 +1 @@ -{ - 'bundles': [ - 'system', - 'users', - ], - 'metadata': { - 'dns': {}, - 'nameservers': { - '10.0.11.3', - }, - 'users': { - 'root': { - 'authorized_keys': { - 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILMVroYmswD4tLk6iH+2tvQiyaMe42yfONDsPDIdFv6I ckn', - }, - }, - }, - 'letsencrypt': { - 'acme_node': 'netcup.mails', - }, - } -} +{} diff --git a/groups/os/linux.py b/groups/os/linux.py index 109e5cd..e15c3c8 100644 --- a/groups/os/linux.py +++ b/groups/os/linux.py @@ -10,27 +10,41 @@ 'network', 'ssh', 'sudo', + 'system', 'systemd', 'systemd-journald', 'systemd-networkd', 'systemd-mount', 'systemd-timers', + 'users', 'zsh', ], 'metadata': { - 'systemd-timers': { - 'trim': { - 'command': '/sbin/fstrim -v /', - 'when': 'daily', - }, - }, + 'dns': {}, 'hosts': { '10.0.11.3': [ 'resolver.name', 'secondary.resolver.name', ], }, + 'letsencrypt': { + 'acme_node': 'netcup.mails', + }, + 'nameservers': { + '10.0.11.3', + }, + 'systemd-timers': { + 'trim': { + 'command': '/sbin/fstrim -v /', + 'when': 'daily', + }, + }, 'users': { + 'root': { + 'authorized_keys': { + 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILMVroYmswD4tLk6iH+2tvQiyaMe42yfONDsPDIdFv6I ckn', + }, + }, 'ckn': { 'shell': '/usr/bin/zsh', 'authorized_keys': { diff --git a/hooks/skip_local_nodes.py b/hooks/skip_local_nodes.py new file mode 100644 index 0000000..1f419c6 --- /dev/null +++ b/hooks/skip_local_nodes.py @@ -0,0 +1,6 @@ +from bundlewrap.exceptions import SkipNode + +def node_apply_start(repo, node, interactive, **kwargs): + if node.hostname == 'localhost': + if node.metadata.get('id') != repo.libs.local.id(): + raise SkipNode('bw is not currently running on this node') diff --git a/libs/local.py b/libs/local.py new file mode 100644 index 0000000..5bb776f --- /dev/null +++ b/libs/local.py @@ -0,0 +1,8 @@ +from os.path import expanduser, exists +from functools import cache + +@cache +def id(): + if exists(expanduser('~/.config/bundlewrap/local_id')): + with open(expanduser('~/.config/bundlewrap/local_id'), 'r') as file: + return file.read().strip() diff --git a/nodes/macbook.py b/nodes/macbook.py new file mode 100644 index 0000000..0959284 --- /dev/null +++ b/nodes/macbook.py @@ -0,0 +1,15 @@ +{ + 'hostname': 'localhost', + 'groups': [ + 'all' + ], + 'bundles': [ + 'macbook' + ], + 'metadata': { + 'id': '597eee25-8908-4569-a6d6-3f823050faa1', + }, + 'os': 'macos', + 'cmd_wrapper_outer': 'sh -c {}', + 'lock_dir': '/Users/mwiegand/.config/bundlewrap/lock', +}