Accepting request 224999 from home:oertel:branches:Base:System

- use lazy umount 

- use os.execute("umount ...") instead of posix.umount("...")
  bnc#866964

OBS-URL: https://build.opensuse.org/request/show/224999
OBS-URL: https://build.opensuse.org/package/show/Base:System/filesystem?expand=0&rev=122
This commit is contained in:
Marcus Meissner 2014-03-10 16:59:35 +00:00 committed by Git OBS Bridge
parent 2ca7667fab
commit 286df5c888
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Fri Mar 7 11:11:05 CET 2014 - ro@suse.de
- use lazy umount
-------------------------------------------------------------------
Thu Mar 6 01:03:53 CET 2014 - ro@suse.de
- use os.execute("umount ...") instead of posix.umount("...")
bnc#866964
-------------------------------------------------------------------
Mon Mar 3 11:48:31 CET 2014 - ro@suse.de

View File

@ -196,7 +196,7 @@ st = posix.stat("/var/run")
if st and st.type == "directory" then
sta = posix.stat("/var/run/systemd")
if sta and sta.type == "directory" then
posix.umount("/var/run")
os.execute("umount -l /var/run")
end
os.rename("/var/run","/var/run.old")
posix.symlink("/run","/var/run")