15 lines
256 B
Plaintext
15 lines
256 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# Removes the repository user
|
||
|
|
||
|
userdel vn-repo
|
||
|
|
||
|
# Enables Apache configuration
|
||
|
|
||
|
if [ -e /usr/share/apache2/apache2-maintscript-helper ]
|
||
|
then
|
||
|
. /usr/share/apache2/apache2-maintscript-helper
|
||
|
apache2_invoke disconf vn-repo.conf
|
||
|
fi
|