initial transfer
This commit is contained in:
@@ -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']],
|
||||
});
|
||||
Reference in New Issue
Block a user