We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 956bd2d commit db879feCopy full SHA for db879fe
root/etc/cont-init.d/50-rclone
@@ -56,8 +56,8 @@ if [ ${#crons[@]} -ne 0 ] && [ ${#crons[@]} -ne $ndup ]; then
56
fi
57
58
# ensure RCLONE_REFRESH_ON_MOUNT_REPEAT is unsigned integer
59
-is_unit() { case $1 in ''|*[!0-9]*) return 1;;esac; }
60
-if ! is_unit "$RCLONE_REFRESH_ON_MOUNT_REPEAT"; then
+is_uint() { case $1 in ''|*[!0-9]*) return 1;;esac; }
+if ! is_uint "$RCLONE_REFRESH_ON_MOUNT_REPEAT"; then
61
echo "*** ERROR: variable should be unsigned integer: RCLONE_REFRESH_ON_MOUNT_REPEAT=$RCLONE_REFRESH_ON_MOUNT_REPEAT"
62
exit 1
63
0 commit comments