updated on Thu Jan 19 12:17:07 UTC 2012
[aur-mirror.git] / codeville / codeville.install
blob6de5c7db95d6d14077d365eb90448a29b2740e12
1 # This is a default template for a post-install scriptlet.  You can
2 # remove any functions you don't need (and this header).
4 # arg 1:  the new package version
5 pre_install() {
6   /bin/true
9 # arg 1:  the new package version
10 post_install() {
11     useradd cdv
12     # initialize cdvserver
13     #touch /var/lib/cdvserver/passwd
14     chown -R cdv /var/lib/cdvserver
15     cdvserver -i
16     
18     echo "You will need to create at least 1 account by the following command:"
19     echo "cdvpasswd -f passwd add <username>"
20     echo ""
21     echo "To customize codeville take a look at /etc/cdvserver.conf"
22     echo "To run the codeville server at startup add cdv to your DEAMONS array"
25 # arg 1:  the new package version
26 # arg 2:  the old package version
27 pre_upgrade() {
28   /bin/true
31 # arg 1:  the new package version
32 # arg 2:  the old package version
33 post_upgrade() {
34   /bin/true
37 # arg 1:  the old package version
38 pre_remove() {
39   /bin/true
42 # arg 1:  the old package version
43 post_remove() {
44     echo "the repository has not been deleted."
45     echo "Per default it is located at /var/lib/cdvserver."
46     /bin/true
49 op=$1
50 shift
51 [ "$(type -t "$op")" = "function" ] && $op "$@"
53 # vim:set ts=2 sw=2 et: