Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Valery Ushakov
tiny-cloud
Commits
39670c09
Commit
39670c09
authored
Nov 03, 2022
by
Jake Buchholz Göktürk
Browse files
Add Missing Trailing Newlines
parent
feada28f
Changes
13
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
39670c09
...
...
@@ -51,4 +51,4 @@ oci:
nocloud
:
install
-Dm644
-t
$(PREFIX)
/lib/tiny-cloud/nocloud
\
lib/tiny-cloud/nocloud/
*
\ No newline at end of file
lib/tiny-cloud/nocloud/
*
etc/init.d/tiny-cloud-early
View file @
39670c09
...
...
@@ -21,4 +21,4 @@ start() {
install_hotplugs
eend
$?
fi
}
\ No newline at end of file
}
etc/init.d/tiny-cloud-final
View file @
39670c09
...
...
@@ -22,4 +22,4 @@ start() {
ebegin
"Marking Instance Bootstrap Complete"
bootstrap_complete
eend
$?
}
\ No newline at end of file
}
etc/network/interfaces.d/lo
View file @
39670c09
auto lo
iface lo
use link
use loopback
\ No newline at end of file
use loopback
lib/tiny-cloud/aws/imds
View file @
39670c09
...
...
@@ -14,4 +14,4 @@ _imds_token() {
_imds_header
()
{
echo
"
$IMDS_HEADER
:
$(
_imds_token
)
"
}
\ No newline at end of file
}
lib/tiny-cloud/aws/mdev
View file @
39670c09
...
...
@@ -8,4 +8,4 @@ mod__nvme_ebs_links() {
install_before
'^nvme\.\*'
\
'nvme[0-9]+n.* root:disk 0660 */lib/mdev/nvme-ebs-links'
}
\ No newline at end of file
}
lib/tiny-cloud/azure/imds
View file @
39670c09
...
...
@@ -36,4 +36,4 @@ _imds_ssh_keys() {
# decode userdata value
_imds_userdata
()
{
imds
"
$IMDS_USERDATA
"
|
base64
-d
}
\ No newline at end of file
}
lib/tiny-cloud/common
View file @
39670c09
...
...
@@ -28,4 +28,4 @@ log() {
case "$level" in
crit|alert|emerg) exit 1 ;;
esac
}
\ No newline at end of file
}
lib/tiny-cloud/gcp/imds
View file @
39670c09
...
...
@@ -23,4 +23,4 @@ _imds_ssh_keys() {
# ignore errors and strip leading '<login>:'
imds
-e
"
$ssh_keys
"
|
cut
-d
:
-f2-
done
|
sort
-u
}
\ No newline at end of file
}
lib/tiny-cloud/init-final
View file @
39670c09
...
...
@@ -18,4 +18,4 @@ run_userdata() {
{
"
$userdata
"
2>& 1
;
echo
$?
>
"
$exit
"
;
}
|
tee
"
$log
"
return
$(
cat
"
$exit
"
)
}
\ No newline at end of file
}
lib/tiny-cloud/nocloud/imds
View file @
39670c09
...
...
@@ -100,4 +100,4 @@ _imds() {
else
yx -f "$file" $keypath
fi
}
\ No newline at end of file
}
lib/tiny-cloud/oci/imds
View file @
39670c09
...
...
@@ -32,4 +32,4 @@ _imds_nic_index() {
[
"
$m
"
=
"
$mac
"
]
&&
echo
$n
;
return
0
done
return
1
}
\ No newline at end of file
}
sbin/imds-net-sync
View file @
39670c09
...
...
@@ -140,4 +140,4 @@ case "$PHASE" in
# TODO: kill daemon, maybe some cleanup
;;
*
)
esac
\ No newline at end of file
esac
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment