-
Notifications
You must be signed in to change notification settings - Fork 5
/
recipe.yml
110 lines (101 loc) · 3.14 KB
/
recipe.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: Kattleya Plasma Desktop
id: kattleya-plasma
stages:
- id: build
base: ghcr.io/vanilla-os/core:main
singlelayer: false
labels:
maintainer: Kattleya Contributors
args:
DEBIAN_FRONTEND: noninteractive
runs:
commands:
- echo 'APT::Install-Recommends "1";' > /etc/apt/apt.conf.d/01norecommends
modules:
- name: init-setup
type: shell
commands:
- echo 'PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games"' > /etc/environment
- sed -i '4,10d' /etc/profile
- apt update
- apt upgrade -y
- apt clean
- apt-mark hold snapd
- apt -y install squashfs-tools minisign
- name: vanilla-tools
type: shell
source:
type: tar
# switch to production build once in production
url: https://github.com/Vanilla-OS/vanilla-tools/releases/download/continuous/vanilla-tools.tar.gz
commands:
- mkdir -p /usr/bin
- cp /sources/vanilla-tools/vanilla-tools/lpkg /usr/bin/lpkg
- cp /sources/vanilla-tools/vanilla-tools/cur-gpu /usr/bin/cur-gpu
- chmod +x /usr/bin/lpkg
- chmod +x /usr/bin/cur-gpu
- name: packages-modules
type: includes
includes:
- modules/00-vanilla-desktop-base.yml
- modules/00-vanilla-backgrounds.yml
- modules/00-vanilla-first-setup.yml
- modules/00-vanilla-system-operator.yml
- modules/00-vanilla-apx-gui.yml
- modules/00-vanilla-tour.yml
- modules/00-vanilla-sideload.yml
- modules/00-vanilla-updates-utility.yml
- modules/02-waydroid-modules.yml
- modules/03-fswarn.yml
- modules/10-vanilla-abroot-rollback-notifier.yml
- modules/20-plasma-core.yml
- modules/30-plasma-essentials.yml
- modules/50-laptop-goodies.yml
- modules/60-media.yml
- modules/80-printers.yml
- modules/90-3d-utils.yml
- modules/100-accessibility.yml
- modules/110-fonts.yml
- modules/130-plymouth.yml
- modules/131-plymouth-theme-vanilla.yml
- modules/140-password.yml
- modules/160-utilities.yml
- modules/161-plasma-utilities.yml
- modules/200-plasma-common.yml
- modules/210-libs-extra.yml
- modules/998-vanilla-cleanup.yml
- modules/999-pkg-cleanup.yml
- name: firstsetup-default-session
type: shell
commands:
- sed 's/Session=/Session=firstsetup/g' -i /usr/share/accountsservice/user-templates/administrator
- sed 's/Session=/Session=firstsetup/g' -i /usr/share/accountsservice/user-templates/standard
- name: cleanup
type: shell
commands:
- apt autoremove -y
- apt clean
- lpkg --lock
- name: sysconf-setup
type: shell
commands:
- rsync -a /etc/ /sysconf/
- name: fsguard
type: fsguard
CustomFsGuard: false
FsGuardLocation: "/usr/sbin/FsGuard"
GenerateKey: true
FilelistPaths: ["/usr/bin"]
modules:
- name: remove-prev-fsguard
type: shell
commands:
- rm -rf /FsGuard
- rm -f ./minisign.pub ./minisign.key
- chmod +x /usr/sbin/init
- name: cleanup2
type: shell
commands:
- rm -rf /tmp/*
- rm -rf /var/tmp/*
- rm -rf /sources