mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2026-01-01 06:37:32 +08:00
6 lines
132 B
Bash
6 lines
132 B
Bash
#!/bin/bash
|
|
|
|
# Enable user session on boot, not on login
|
|
UserId=$(cut -d: -f3 /etc/passwd | tail -1)
|
|
loginctl enable-linger $UserId
|