builds, initial testing builds, packaging, ci workflow
Some checks failed
Comprehensive CI/CD Pipeline / Build and Test (push) Failing after 2m1s
Comprehensive CI/CD Pipeline / Security Audit (push) Successful in 46s
Comprehensive CI/CD Pipeline / Package Validation (push) Successful in 1m7s
Comprehensive CI/CD Pipeline / Status Report (push) Has been skipped
Some checks failed
Comprehensive CI/CD Pipeline / Build and Test (push) Failing after 2m1s
Comprehensive CI/CD Pipeline / Security Audit (push) Successful in 46s
Comprehensive CI/CD Pipeline / Package Validation (push) Successful in 1m7s
Comprehensive CI/CD Pipeline / Status Report (push) Has been skipped
This commit is contained in:
parent
0e80b08b0a
commit
45c124637b
25 changed files with 1994 additions and 6 deletions
44
filesystem/chroot-template.yaml
Normal file
44
filesystem/chroot-template.yaml
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Chroot filesystem template for deb-mock
|
||||
# This file defines the basic filesystem structure for chroot environments
|
||||
|
||||
filesystem:
|
||||
directories:
|
||||
- /bin
|
||||
- /sbin
|
||||
- /usr/bin
|
||||
- /usr/sbin
|
||||
- /usr/lib
|
||||
- /usr/lib64
|
||||
- /usr/include
|
||||
- /usr/share
|
||||
- /var
|
||||
- /tmp
|
||||
- /proc
|
||||
- /sys
|
||||
- /dev
|
||||
- /etc
|
||||
- /root
|
||||
- /home
|
||||
- /opt
|
||||
- /srv
|
||||
- /media
|
||||
- /mnt
|
||||
|
||||
mount_points:
|
||||
- source: /proc
|
||||
target: /proc
|
||||
type: proc
|
||||
options: "nosuid,noexec,nodev"
|
||||
- source: /sys
|
||||
target: /sys
|
||||
type: sysfs
|
||||
options: "nosuid,noexec,nodev,ro"
|
||||
- source: /dev
|
||||
target: /dev
|
||||
type: devtmpfs
|
||||
options: "nosuid,strictatime,size=65536k,mode=755"
|
||||
|
||||
permissions:
|
||||
/root: "755"
|
||||
/tmp: "1777"
|
||||
/var/tmp: "1777"
|
||||
Loading…
Add table
Add a link
Reference in a new issue