forked from pool/filesystem
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:
parent
2ca7667fab
commit
286df5c888
@ -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
|
||||
|
||||
|
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user