From d84ba4cedc80ec5e51dd72387407dbfbe801caf6 Mon Sep 17 00:00:00 2001 From: Laurent Mazet Date: Wed, 14 Jan 2015 15:18:10 +0100 Subject: [PATCH] fix f@#%ing nfs mount on rec slave --- master/opt/cluster/rec/etc/rc.local | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 master/opt/cluster/rec/etc/rc.local diff --git a/master/opt/cluster/rec/etc/rc.local b/master/opt/cluster/rec/etc/rc.local new file mode 100755 index 0000000..05f83ac --- /dev/null +++ b/master/opt/cluster/rec/etc/rc.local @@ -0,0 +1,17 @@ +#!/bin/bash -e +# +# rc.local +# +# This script is executed at the end of each multiuser runlevel. +# Make sure that the script will "exit 0" on success or any other +# value on error. +# +# In order to enable or disable this script just change the execution +# bits. +# +# By default this script does nothing. + +# fix f@#%ing nfs mount +mount -a + +exit 0 -- 2.30.2