Do not reset old permissions
This commit is contained in:
parent
292e3dc211
commit
488d2380e1
12
kernel.go
12
kernel.go
@ -622,12 +622,12 @@ func genDockerKernels(dii dockerImageInfo, newkcfg *config.KernelConfig,
|
|||||||
newkcfg.Kernels = append(newkcfg.Kernels, ki)
|
newkcfg.Kernels = append(newkcfg.Kernels, ki)
|
||||||
|
|
||||||
for _, cmd := range []string{
|
for _, cmd := range []string{
|
||||||
"find /boot -type f -exec chmod 0644 {} \\;",
|
"find /boot -type f -exec chmod a+r {} \\;",
|
||||||
"find /boot -type d -exec chmod 0755 {} \\;",
|
"find /boot -type d -exec chmod a+rx {} \\;",
|
||||||
"find /usr/src -type f -exec chmod 0644 {} \\;",
|
"find /usr/src -type f -exec chmod a+r {} \\;",
|
||||||
"find /usr/src -type d -exec chmod 0755 {} \\;",
|
"find /usr/src -type d -exec chmod a+rx {} \\;",
|
||||||
"find /lib/modules -type f -exec chmod 0644 {} \\;",
|
"find /lib/modules -type f -exec chmod a+r {} \\;",
|
||||||
"find /lib/modules -type d -exec chmod 0755 {} \\;",
|
"find /lib/modules -type d -exec chmod a+rx {} \\;",
|
||||||
} {
|
} {
|
||||||
_, err = c.Run("/tmp", cmd)
|
_, err = c.Run("/tmp", cmd)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user