add includedir entry to sudoers if its not there
diff --git a/stack.sh b/stack.sh
index b43f3cc..38560e6 100755
--- a/stack.sh
+++ b/stack.sh
@@ -61,6 +61,9 @@
     fi
 
     echo "Giving stack user passwordless sudo priviledges"
+    # natty uec images sudoers does not have a '#includedir'. add one.
+    grep -q "^#includedir.*/etc/sudoers.d" /etc/sudoers ||
+        echo "#includedir /etc/sudoers.d" >> /etc/sudoers
     ( umask 226 && echo "stack ALL=(ALL) NOPASSWD:ALL" \
         > /etc/sudoers.d/50_stack_sh )