forked from buzzhub/lsyupdate
12 lines
206 B
Plaintext
12 lines
206 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
#set -e
|
||
|
|
|
||
|
|
# Reload systemd configurations
|
||
|
|
systemctl daemon-reload
|
||
|
|
|
||
|
|
# Enable the service to start on boot
|
||
|
|
systemctl enable lsyloader.service
|
||
|
|
|
||
|
|
# Start the service
|
||
|
|
systemctl start lsyloader.service
|