-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit dff73c6.
- Loading branch information
1 parent
c514a53
commit 51f6f4e
Showing
20 changed files
with
95 additions
and
19 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
ic-os/components/boundary-guestos/etc/systemd/system/node_exporter.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
ic-os/components/boundary-guestos/etc/systemd/system/setup-hostname.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
ic-os/components/early-boot/setup-hostname/hostos/setup-hostname.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
ic-os/components/early-boot/setup-hostname/setup-hostname.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
35 changes: 35 additions & 0 deletions
35
ic-os/components/misc/serial-getty@/guestos/serial-getty@.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Overwrite the default systemd serial getty service to | ||
# run our own console getty. | ||
|
||
[Unit] | ||
Description=Serial Getty on %I | ||
BindsTo=dev-%i.device | ||
After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service getty-pre.target | ||
After=rc-local.service | ||
|
||
# If additional gettys are spawned during boot then we should make | ||
# sure that this is synchronized before getty.target, even though | ||
# getty.target didn't actually pull it in. | ||
Before=getty.target | ||
IgnoreOnIsolate=yes | ||
|
||
# IgnoreOnIsolate causes issues with sulogin, if someone isolates | ||
# rescue.target or starts rescue.service from multi-user.target or | ||
# graphical.target. | ||
Conflicts=rescue.service | ||
Before=rescue.service | ||
|
||
[Service] | ||
ExecStart=-/opt/ic/bin/infogetty -r /etc/allow_console_root /dev/%I | ||
Type=idle | ||
Restart=always | ||
UtmpIdentifier=%I | ||
TTYPath=/dev/%I | ||
TTYReset=yes | ||
TTYVHangup=yes | ||
KillMode=process | ||
IgnoreSIGPIPE=no | ||
SendSIGHUP=yes | ||
|
||
[Install] | ||
WantedBy=getty.target |
This file was deleted.
Oops, something went wrong.
40 changes: 40 additions & 0 deletions
40
ic-os/components/misc/serial-getty@/setupos/serial-getty@.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Overwrite the default systemd serial getty service to | ||
# run our own console getty. | ||
|
||
[Unit] | ||
Description=Serial Getty on %I | ||
Documentation=man:agetty(8) man:systemd-getty-generator(8) | ||
Documentation=http://0pointer.de/blog/projects/serial-console.html | ||
BindsTo=dev-%i.device | ||
After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service getty-pre.target | ||
After=rc-local.service | ||
|
||
# If additional gettys are spawned during boot then we should make | ||
# sure that this is synchronized before getty.target, even though | ||
# getty.target didn't actually pull it in. | ||
Before=getty.target | ||
IgnoreOnIsolate=yes | ||
|
||
# IgnoreOnIsolate causes issues with sulogin, if someone isolates | ||
# rescue.target or starts rescue.service from multi-user.target or | ||
# graphical.target. | ||
Conflicts=rescue.service | ||
Before=rescue.service | ||
|
||
[Service] | ||
# The '-o' option value tells agetty to replace 'login' arguments with an | ||
# option to preserve environment (-p), followed by '--' for safety, and then | ||
# the entered username. | ||
ExecStart=-/sbin/agetty -p -a root -o '-p -- \\u' --keep-baud 115200,38400,9600 %I $TERM | ||
Type=idle | ||
Restart=always | ||
UtmpIdentifier=%I | ||
TTYPath=/dev/%I | ||
TTYReset=yes | ||
TTYVHangup=yes | ||
KillMode=process | ||
IgnoreSIGPIPE=no | ||
SendSIGHUP=yes | ||
|
||
[Install] | ||
WantedBy=getty.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
[Unit] | ||
Description=VSOCK agent daemon | ||
After=syslog.target | ||
|
||
[Service] | ||
User=root | ||
|
2 changes: 1 addition & 1 deletion
2
ic-os/components/monitoring/node_exporter/node_exporter.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters