X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fdistro-install-common%2Fend;h=e6e182b82a82afbdc58aff3af9834574f8ac584d;hb=d3d495af167adba91b190e8dcb95649c34fa04c7;hp=6bb2880ef82a3f160c9cdcf31bed07826929220f;hpb=4261ad7e021ec77e7198cf42c3576dad07f12a64;p=automated-distro-installer diff --git a/fai/config/distro-install-common/end b/fai/config/distro-install-common/end index 6bb2880..e6e182b 100755 --- a/fai/config/distro-install-common/end +++ b/fai/config/distro-install-common/end @@ -9,19 +9,27 @@ trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?"' ERR # based on unison error, with 8192 from # sysctl -a | grep fs.inotify.max_user_watches #http://stackoverflow.com/questions/535768/what-is-a-reasonable-amount-of-inotify-watches-with-linux -echo "fs.inotify.max_user_watches = 1000000" >> $target/etc/sysctl.d/99-sysctl.conf + +f=$target/etc/sysctl.d/99-sysctl.conf +key=fs.inotify.max_user_watches +if [[ -e $f ]]; then sed -ri "/^\s*$key\s*=/d" $f; fi +echo "fs.inotify.max_user_watches = 1000000" >> $f # if we weren't rebooting, you could apply it now with: # sysctl --system -echo 'ian ALL=(ALL) NOPASSWD: ALL' >> $target/etc/sudoers +f=$target/etc/sudoers +line='ian ALL=(ALL) NOPASSWD: ALL' +if [[ ! -e $f ]] || ! grep -xF "$line" $f; then + echo "$line" >> $f +fi dir=/q/p/c/machine_specific/$HOSTNAME/.unison $ROOTCMD mkdir -p $dir $ROOTCMD rm -rf /root/.unison -$ROOTCMD ln -s $dir /root -$ROOTCMD ln -s /q/p / +$ROOTCMD ln -sf $dir /root +$ROOTCMD ln -sf /q/p / while true; do $ROOTCMD chown 1000:1000 $dir @@ -32,4 +40,4 @@ done # kvm is normally created by some package, # but unison doesn't like unknown groups, so make it now so initial sync works. -$ROOTCMD groupadd kvm +$ROOTCMD groupadd -r kvm || [[ $? == 9 ]]