-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: K.B.Dharun Krishna <[email protected]>
- Loading branch information
1 parent
5268948
commit 1f2a26b
Showing
3 changed files
with
57 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,61 @@ | ||
base: ghcr.io/vanilla-os/desktop:main | ||
name: Vanilla Desktop VM | ||
id: vanilla-vm | ||
labels: | ||
maintainer: Vanilla OS Contributors | ||
args: | ||
DEBIAN_FRONTEND: noninteractive | ||
runs: | ||
- echo 'APT::Install-Recommends "1";' > /etc/apt/apt.conf.d/01norecommends | ||
stages: | ||
- id: build | ||
base: ghcr.io/vanilla-os/desktop:main | ||
singlelayer: false | ||
labels: | ||
maintainer: Vanilla OS Contributors | ||
args: | ||
DEBIAN_FRONTEND: noninteractive | ||
runs: | ||
- echo 'APT::Install-Recommends "1";' > /etc/apt/apt.conf.d/01norecommends | ||
|
||
modules: | ||
- name: init-setup | ||
type: shell | ||
commands: | ||
- lpkg --unlock | ||
- apt update | ||
modules: | ||
- name: init-setup | ||
type: shell | ||
commands: | ||
- lpkg --unlock | ||
- apt update | ||
|
||
- name: vm-tools | ||
type: apt | ||
source: | ||
packages: | ||
- open-vm-tools | ||
- open-vm-tools-desktop | ||
- name: vm-tools | ||
type: apt | ||
source: | ||
packages: | ||
- open-vm-tools | ||
- open-vm-tools-desktop | ||
|
||
- name: virtualbox-guest-additions | ||
type: apt | ||
source: | ||
packages: | ||
- virtualbox-guest-utils | ||
- virtualbox-guest-x11 | ||
- name: virtualbox-guest-additions | ||
type: apt | ||
source: | ||
packages: | ||
- virtualbox-guest-utils | ||
- virtualbox-guest-x11 | ||
|
||
- name: qemu | ||
type: apt | ||
source: | ||
packages: | ||
- qemu-guest-agent | ||
- spice-webdavd | ||
- name: qemu | ||
type: apt | ||
source: | ||
packages: | ||
- qemu-guest-agent | ||
- spice-webdavd | ||
|
||
- name: cleanup | ||
type: shell | ||
commands: | ||
- apt autoremove -y | ||
- apt clean | ||
- lpkg --lock | ||
- name: cleanup | ||
type: shell | ||
commands: | ||
- apt autoremove -y | ||
- apt clean | ||
- lpkg --lock | ||
|
||
- name: fsguard | ||
type: fsguard | ||
FsGuardLocation: "/usr/sbin/FsGuard" | ||
CustomFsGuard: false | ||
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: fsguard | ||
type: fsguard | ||
FsGuardLocation: "/usr/sbin/FsGuard" | ||
CustomFsGuard: false | ||
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 |