Skip to content

Commit

Permalink
Adjusted vim modeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlesage committed Aug 8, 2018
1 parent 7d54047 commit 85d3523
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion rootfs/etc/cont-init.d/00-app-niceness.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ fi
# Export variable.
echo "$APP_NICE_CMD" > /var/run/s6/container_environment/APP_NICE_CMD

# vim: set ft=sh :
# vim:ft=sh:ts=4:sw=4:et:sts=4
2 changes: 1 addition & 1 deletion rootfs/etc/cont-init.d/00-app-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ if [ -e /startapp.sh ] ; then
sync
fi

# vim: set ft=sh :
# vim:ft=sh:ts=4:sw=4:et:sts=4
2 changes: 1 addition & 1 deletion rootfs/etc/cont-init.d/00-app-user-map.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ chmod 640 /etc/shadow
echo "$APP_USER:x:$USER_ID:$GROUP_ID::/dev/null:/sbin/nologin" >> /etc/passwd
echo "$APP_USER:x:$GROUP_ID:" >> /etc/group

# vim: set ft=sh :
# vim:ft=sh:ts=4:sw=4:et:sts=4
2 changes: 1 addition & 1 deletion rootfs/etc/cont-init.d/00-clean-logmonitor-states.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ set -u # Treat unset variables as an error.

rm -rf /var/run/logmonitor

# vim: set ft=sh :
# vim:ft=sh:ts=4:sw=4:et:sts=4
2 changes: 1 addition & 1 deletion rootfs/etc/cont-init.d/00-clean-tmp-dir.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ if [ "${CLEAN_TMP_DIR:-1}" -eq 1 ]; then
rm -rf /tmp/*
fi

# vim: set ft=sh :
# vim:ft=sh:ts=4:sw=4:et:sts=4
2 changes: 1 addition & 1 deletion rootfs/etc/cont-init.d/00-set-app-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ do
touch /etc/services.d/app/$SVC.dep
done

# vim: set ft=sh :
# vim:ft=sh:ts=4:sw=4:et:sts=4
2 changes: 1 addition & 1 deletion rootfs/etc/cont-init.d/00-set-home.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ set -u # Treat unset variables as an error.
# Export variable.
echo > /var/run/s6/container_environment/HOME

# vim: set ft=sh :
# vim:ft=sh:ts=4:sw=4:et:sts=4
2 changes: 1 addition & 1 deletion rootfs/etc/cont-init.d/00-take-config-ownership.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ if [ "${TAKE_CONFIG_OWNERSHIP:-1}" -eq 1 ]; then
fi
fi

# vim: set ft=sh :
# vim:ft=sh:ts=4:sw=4:et:sts=4
2 changes: 1 addition & 1 deletion rootfs/etc/cont-init.d/00-xdg-runtime-dir.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ mkdir -p "$XDG_RUNTIME_DIR"
chown $USER_ID:$GROUP_ID "$XDG_RUNTIME_DIR"
chmod 700 "$XDG_RUNTIME_DIR"

# vim: set ft=sh :
# vim:ft=sh:ts=4:sw=4:et:sts=4

0 comments on commit 85d3523

Please sign in to comment.