@@ -37,8 +37,12 @@ var ociHook = cli.Command{
37
37
if err != nil {
38
38
return err
39
39
}
40
+ spec , err := loadSpec (state .Bundle )
41
+ if err != nil {
42
+ return err
43
+ }
40
44
var (
41
- ctx = newTemplateContext (state )
45
+ ctx = newTemplateContext (state , spec )
42
46
args = []string (context .Args ())
43
47
env = os .Environ ()
44
48
)
@@ -52,6 +56,25 @@ var ociHook = cli.Command{
52
56
},
53
57
}
54
58
59
+ type hookSpec struct {
60
+ Root struct {
61
+ Path string `json:"path"`
62
+ } `json:"root"`
63
+ }
64
+
65
+ func loadSpec (bundle string ) (* hookSpec , error ) {
66
+ f , err := os .Open (filepath .Join (bundle , "config.json" ))
67
+ if err != nil {
68
+ return nil , err
69
+ }
70
+ defer f .Close ()
71
+ var s hookSpec
72
+ if err := json .NewDecoder (f ).Decode (& s ); err != nil {
73
+ return nil , err
74
+ }
75
+ return & s , nil
76
+ }
77
+
55
78
func loadHookState (r io.Reader ) (* specs.State , error ) {
56
79
var s specs.State
57
80
if err := json .NewDecoder (r ).Decode (& s ); err != nil {
@@ -60,9 +83,10 @@ func loadHookState(r io.Reader) (*specs.State, error) {
60
83
return & s , nil
61
84
}
62
85
63
- func newTemplateContext (state * specs.State ) * templateContext {
86
+ func newTemplateContext (state * specs.State , spec * hookSpec ) * templateContext {
64
87
t := & templateContext {
65
88
state : state ,
89
+ root : spec .Root .Path ,
66
90
}
67
91
t .funcs = template.FuncMap {
68
92
"id" : t .id ,
@@ -77,6 +101,7 @@ func newTemplateContext(state *specs.State) *templateContext {
77
101
78
102
type templateContext struct {
79
103
state * specs.State
104
+ root string
80
105
funcs template.FuncMap
81
106
}
82
107
@@ -89,7 +114,10 @@ func (t *templateContext) bundle() string {
89
114
}
90
115
91
116
func (t * templateContext ) rootfs () string {
92
- return filepath .Join (t .state .Bundle , "rootfs" )
117
+ if filepath .IsAbs (t .root ) {
118
+ return t .root
119
+ }
120
+ return filepath .Join (t .state .Bundle , t .root )
93
121
}
94
122
95
123
func (t * templateContext ) pid () int {
0 commit comments