Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 57072 Build 53960: arc lint + arc unit
Event Timeline
| release/tools/vmimage.subr | ||
|---|---|---|
| 144 | # man 5 pkg.conf
...
AUTOCLEAN: boolean
Automatically cleanout the content of PKG_CACHEDIR after
each non dry-run call to pkg-install(8) or
pkg-upgrade(8).A cleanout on each iteration looks heavy-weighted. Shall we batch installing and finally do the cleaning out ? i.e., /usr/sbin/pkg install -y ${p1} ${p2} ${p3} ... | |
| release/tools/vmimage.subr | ||
|---|---|---|
| 144 | in what way is this "heavy", in context of the overall build? The intent is to reduce as much as possible overall image size, The ever-increasing python install for cloudinit images makes a I would actually prefer to mount a tmpfs in /var/cache/pkg, or | |
| release/tools/vmimage.subr | ||
|---|---|---|
| 144 | Sorry, for "heavy" I meant /usr/sbin/pkg install may re-download dependencies those are shared by packages.
Why not ? I think nullfs can help. | |
| release/tools/vmimage.subr | ||
|---|---|---|
| 144 | I checked and it doesn't re-fetch dependencies its already installed. | |