10 lines
70 B
Bash
Executable File
10 lines
70 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
case "$1" in
|
|
purge)
|
|
rm -rf /etc/python
|
|
esac
|
|
|
|
|