Displaying 1 result from an estimated 1 matches for "devbox1".
Did you mean:
devbox
2007 Feb 20
8
overriding included classes
...round, which is to remove wiped from
workstation and use workstation as a "mixin" rather than inheriting from
it:
class workstation { ... }
class wiped { ... }
class devstation {
include workstation
}
node client1 {
include workstation
include wiped
}
node devbox1 {
include devstation
}
but I think I prefer the semantics of "inherits," since a devstation is a
special kind of workstation, rather than a superset of it.
I''m curious to hear suggestions for implementing this sort of behavior,
and how other people are approaching simil...