updated on Fri Jan 20 04:00:45 UTC 2012
[aur-mirror.git] / zeitgeist-userspace / install
blob5eae58609b0085970c6ef074da5d927b58255125
1 ## arg 1:  the new package version
2 pre_install() {
3     if [ -e "/etc/zeitgeist-userspace.conf" ]; then
4     cp /etc/zeitgeist-userspace.conf /tmp/zeitgeist-userspace.conf
5   fi
7   if [ -e "/etc/conf.d/zeitgeist-userspace.conf" ]; then
8     cp /etc/conf.d/zeitgeist-userspace.conf /tmp/zeitgeist-userspace.conf
9   fi
13 ## arg 1:  the new package version
14 post_install() {
15   if [ -e "/tmp/zeitgeist-userspace.conf" ]; then
16     mv /tmp/zeitgeist-userspace.conf /etc/conf.d/zeitgeist-userspace.conf
17   fi
19   echo "Remember to edit /etc/conf.d/zeitgeist-userspace.conf"
22 ## arg 1:  the new package version
23 ## arg 2:  the old package version
24 pre_upgrade() { # Save old config
25   if [ -e "/etc/zeitgeist-userspace.conf" ]; then
26     cp /etc/zeitgeist-userspace.conf /tmp/zeitgeist-userspace.conf
27   fi
29   if [ -e "/etc/conf.d/zeitgeist-userspace.conf" ]; then
30     cp /etc/conf.d/zeitgeist-userspace.conf /tmp/zeitgeist-userspace.conf
31   fi
34 ## arg 1:  the new package version
35 ## arg 2:  the old package version
36 post_upgrade() { # restore old config
37   if [ -e "/tmp/zeitgeist-userspace.conf" ]; then
38     mv /tmp/zeitgeist-userspace.conf /etc/conf.d/zeitgeist-userspace.conf
39   fi
42 ## arg 1:  the old package version
43 pre_remove() {
44   echo ""
47 ## arg 1:  the old package version
48 post_remove() {
49   echo ""
52 # vim:set ts=2 sw=2 et: