deb-mock/filesystem/chroot-template.yaml
robojerk 45c124637b
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
builds, initial testing builds, packaging, ci workflow
2025-09-04 12:55:35 -07:00

44 lines
798 B
YAML

# 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"