initial transfer

This commit is contained in:
Benjamin Diedrichsen
2026-07-27 13:09:00 +02:00
parent 9f25d48dc2
commit 736c01216a
191 changed files with 17622 additions and 136 deletions
+4
View File
@@ -0,0 +1,4 @@
from pyinfra.operations import apt
from pyinfra import host
+7
View File
@@ -0,0 +1,7 @@
import { cubes } from '@bitstack/nopy';
import { z } from 'zod';
export default cubes.Manifest({
name: '[apt-all] Test dependencies',
dependencies: () => ['apt/more'],
});
@@ -0,0 +1,16 @@
from pyinfra.operations import apt
from pyinfra import host
UPDATE = host.data.UPDATE
apt.packages(
name='Install essentials',
packages=[
'fish',
'ranger',
'age'
],
update=UPDATE,
_sudo=True
)
@@ -0,0 +1,10 @@
import { cubes } from '@bitstack/nopy';
import { z } from 'zod';
export default cubes.Manifest({
name: '[apt:essentials] Install essential packages',
dependencies: () => [],
schema: z.object({
UPDATE: z.boolean().default(false),
}),
});
+16
View File
@@ -0,0 +1,16 @@
from pyinfra.operations import apt
from pyinfra import host
UPDATE = host.data.UPDATE
apt.packages(
name='Install essentials',
packages=[
'build-essential',
'pkg-config',
'age'
],
update=UPDATE,
_sudo=True
)
@@ -0,0 +1,7 @@
import { cubes } from '@bitstack/nopy';
import { z } from 'zod';
export default cubes.Manifest({
name: '[apt-more] Test dependencies',
dependencies: () => [['apt/essentials']],
});