diff options
| author | Chris Lumens <clumens@redhat.com> | 2008-04-09 09:40:32 -0400 |
|---|---|---|
| committer | Chris Lumens <clumens@redhat.com> | 2008-04-09 09:40:32 -0400 |
| commit | b94d6397937db51ec0070b7ab9e0d8c83603ccca (patch) | |
| tree | a2368e7899d988562ca2259415a72106e6bf5569 /loader2 | |
| parent | 27eeda8a3fe57f3a63f37b5bf6ac32b81141019b (diff) | |
Ignore warnings in copying /etc and /var for now.
Diffstat (limited to 'loader2')
| -rw-r--r-- | loader2/loader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loader2/loader.c b/loader2/loader.c index 552c521c1..d00c17413 100644 --- a/loader2/loader.c +++ b/loader2/loader.c @@ -1746,8 +1746,8 @@ int main(int argc, char ** argv) { migrate_runtime_directory("/lib"); migrate_runtime_directory("/lib64"); ret = symlink("/mnt/runtime/etc/selinux", "/etc/selinux"); - copyDirectory("/mnt/runtime/etc","/etc", copyWarnFn, copyErrorFn); - copyDirectory("/mnt/runtime/var","/var", copyWarnFn, copyErrorFn); + copyDirectory("/mnt/runtime/etc","/etc", NULL, copyErrorFn); + copyDirectory("/mnt/runtime/var","/var", NULL, copyErrorFn); } /* now load SELinux policy before exec'ing anaconda and the shell |
