mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-07-09 16:52:05 +08:00
18 lines
394 B
Plaintext
18 lines
394 B
Plaintext
APT::Install-Suggests “0”;
|
|
APT::Install-Recommends “0”;
|
|
|
|
APT::Install {
|
|
Pre-Invoke { "/usr/comma/apt_setup.sh"; };
|
|
Post-Invoke { "/usr/comma/apt_teardown.sh"; };
|
|
};
|
|
|
|
APT::Update {
|
|
Pre-Invoke { "/usr/comma/apt_setup.sh"; };
|
|
Post-Invoke { "/usr/comma/apt_teardown.sh"; };
|
|
};
|
|
|
|
DPkg {
|
|
Pre-Invoke { "/usr/comma/apt_setup.sh"; };
|
|
Post-Invoke { "/usr/comma/apt_teardown.sh"; };
|
|
};
|