-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building on Ubuntu 20.04 LTS / cloud-init parameter #68
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ SEED_POST_D="/var/lib/cloud/seed/configdrive" | |
|
||
Usage() { | ||
cat <<EOF | ||
Usage: ${0##*/} mode output_d | ||
Usage: ${0##*/} mode output_dir | ||
|
||
Datasource for openstack config drive | ||
EOF | ||
|
@@ -168,7 +168,7 @@ while [ $# -ne 0 ]; do | |
shift; | ||
done | ||
|
||
[ $# -eq 2 ] || bad_Usage "must provide mode and output dir" | ||
[ $# -eq 2 ] || bad_Usage "must provide mode and output_dir" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. here I would leave as it was |
||
mode="$1" | ||
out_d="$2" | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ fail() { [ $# -eq 0 ] || error "$@"; exit 1; } | |
|
||
Usage() { | ||
cat <<EOF | ||
Usage: ${0##*/} mode output_d | ||
Usage: ${0##*/} mode output_dir | ||
|
||
Datasource for EC2 metadata service | ||
Requires network. | ||
|
@@ -110,7 +110,7 @@ while [ $# -ne 0 ]; do | |
shift; | ||
done | ||
|
||
[ $# -eq 2 ] || bad_Usage "must provide mode and data dir" | ||
[ $# -eq 2 ] || bad_Usage "must provide mode and output_dir" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. similar here (with s/data/output/) |
||
mode="$1" | ||
out_d="$2" | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ LABEL="cidata" | |
|
||
Usage() { | ||
cat <<EOF | ||
Usage: ${0##*/} mode output_d | ||
Usage: ${0##*/} mode output_dir | ||
|
||
Datasource for 'nocloud' config disk. | ||
EOF | ||
|
@@ -130,7 +130,7 @@ while [ $# -ne 0 ]; do | |
shift; | ||
done | ||
|
||
[ $# -eq 2 ] || bad_Usage "must provide mode and output dir" | ||
[ $# -eq 2 ] || bad_Usage "must provide mode and output_dir" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and here |
||
mode="$1" | ||
out_d="$2" | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this commit can be dropped
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 . can you drop this commit ?