diff options
Diffstat (limited to 'internal/rosa/etc.go')
| -rw-r--r-- | internal/rosa/etc.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/rosa/etc.go b/internal/rosa/etc.go index 2281a0d5..11687295 100644 --- a/internal/rosa/etc.go +++ b/internal/rosa/etc.go @@ -89,6 +89,9 @@ func (cureEtc) Kind() pkg.Kind { return kindEtc } // Params is a noop. func (cureEtc) Params(*pkg.IContext) {} +// IsExclusive returns false: Cure performs a few trivial filesystem writes. +func (cureEtc) IsExclusive() bool { return false } + // Dependencies returns a slice containing the backing iana-etc release. func (a cureEtc) Dependencies() []pkg.Artifact { if a.iana != nil { |
