

24·
22 hours agoStraight to jail.
Straight to jail.
What a terrible day to have eyes.
Instead of using systemd user services you can just use a normal systemd service and tell it to run the command as a specific user, put something like this in a file at /etc/systemd/system/<unit Name>.service
[Unit]
Description=Run service as user test
After=network.target
[Service]
Type=simple
User=test
Group=test
ExecStart=/opt/teamspoke
[Install]
WantedBy=default.target
Then set it to start at boot
systemctl enable <unit Name>.service
And to start it now
systemctl start <unit Name>.service
If I had a nickel for every time someone thought of boiling pasta by showering with it piercing their nipple, I’d have two nickels-- which isn’t a lot, but it’s weird that it happened twice.
Rust/linuxRust