9 lines
144 B
Bash
Executable File
9 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
# Pre removal script.
|
|
# This script runs before removing the package
|
|
|
|
set -e
|
|
service NVDARemoteServer stop
|
|
#set +e
|
|
exit 0
|