alito
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| alito [2018/12/01 13:41] – created slack | alito [2019/11/07 17:58] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ''/ | + | Create |
| + | |||
| + | #!/bin/sh -e | ||
| + | # | ||
| + | # rc.local | ||
| + | # | ||
| + | # This script is executed at the end of each multiuser runlevel. | ||
| + | # Make sure that the script will "exit 0" on success or any other | ||
| + | # value on error. | ||
| + | # | ||
| + | # In order to enable or disable this script just change the execution | ||
| + | # bits. | ||
| + | # | ||
| + | # By default this script does nothing. | ||
| + | |||
| + | su -l slack -c " | ||
| + | exit 0 | ||
| + | |||
| + | Change permissions: | ||
| + | |||
| + | chmod +x / | ||
| + | |||
| + | Activate it by adding the following content to ''/ | ||
| + | |||
| + | [Unit] | ||
| + | Description=/ | ||
| + | ConditionPathExists=/ | ||
| + | |||
| + | [Service] | ||
| + | Type=forking | ||
| + | ExecStart=/ | ||
| + | TimeoutSec=0 | ||
| + | StandardOutput=tty | ||
| + | RemainAfterExit=yes | ||
| + | SysVStartPriority=99 | ||
| + | |||
| + | [Install] | ||
| + | WantedBy=multi-user.target | ||
| + | |||
| + | Enable the '' | ||
| + | |||
| + | systemctl enable rc-local | ||
| + | |||
| + | Start the '' | ||
| + | |||
| + | systemctl start rc-local.service | ||
| + | |||
| + | Check if any error occurred while starting the service: | ||
| + | |||
| + | systemctl status rc-local.service | ||
| - | su -l slack -c " | ||
| - | exit 0 | ||
alito.1543671692.txt.gz · Last modified: 2019/11/07 17:58 (external edit)