blob: cecdf069509676dbdc75ee4239d8b53a8c466b86 (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo "Edit /etc/ocsinventory/ocsinventory-agent.cfg with your server details."
}
pre_upgrade() {
mv /etc/ocsinventory/ocsinventory-agent.cfg /etc/ocsinventory/ocsinventory-agent.cfg.OLD
}
post_upgrade() {
mv /etc/ocsinventory/ocsinventory-agent.cfg.OLD /etc/ocsinventory/ocsinventory-agent.cfg
}
|