There is a problem to shutdown or reboot a system if the network in use is wireless and there are nfs mounts. I believe what is happening is that the network is being closed before the unmounts. I think I should file a bugzilla against systemd but.....
I found that if I issue this command from the command line the system will reboot properly.
/usr/bin/umount -a -t nfs4 ; /usr/bin/systemctl reboot
So, I modified the sddm.conf to have this line
RebootCommand=/usr/bin/umount -a -t nfs4 ; /usr/bin/systemctl reboot
The reboot process still hangs and messages about "nfs server not responding" are displayed.
Shouldn't this work?
On 06/12/15 14:30, Ed Greshko wrote:
There is a problem to shutdown or reboot a system if the network in use is wireless and there are nfs mounts. I believe what is happening is that the network is being closed before the unmounts. I think I should file a bugzilla against systemd but.....
I found that if I issue this command from the command line the system will reboot properly.
/usr/bin/umount -a -t nfs4 ; /usr/bin/systemctl reboot
So, I modified the sddm.conf to have this line
RebootCommand=/usr/bin/umount -a -t nfs4 ; /usr/bin/systemctl reboot
The reboot process still hangs and messages about "nfs server not responding" are displayed.
Shouldn't this work?
This is the problem I'm trying to workaround https://bugzilla.redhat.com/show_bug.cgi?id=1214466 and I just filed this against sddm https://bugzilla.redhat.com/show_bug.cgi?id=1231413.