7 lines
71 B
Bash
7 lines
71 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
# Remove service
|
||
|
rm /etc/init.d/mariadb
|
||
|
rc-update -u
|