Skip to content
This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit 09a73fc

Browse files
committed
grep doesn't do non-capturing groups
1 parent f283d48 commit 09a73fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ assert_nfs_version() {
300300

301301
local -r requested_version="$(get_requested_nfs_version)"
302302

303-
echo "$requested_version" | grep -Eq '^3|4(?:\.[1-2])?$'
303+
echo "$requested_version" | grep -Eq '^3|4(\.[1-2])?$'
304304
on_failure bail "please set $ENV_VAR_NFS_VERSION to one of: 4.2, 4.1, 4, 3"
305305

306306
if [[ ( ! $(is_nfs3_enabled) ) && "$requested_version" = '3' ]]; then
@@ -636,7 +636,7 @@ summarize_ports() {
636636

637637
init() {
638638

639-
log_header 'setting up'
639+
log_header 'setting up ...'
640640

641641
init_exports
642642
init_assertions
@@ -647,7 +647,7 @@ init() {
647647

648648
boot() {
649649

650-
log_header 'starting services'
650+
log_header 'starting services ...'
651651

652652
boot_main_mounts
653653
boot_main_rpcbind

0 commit comments

Comments
 (0)