Skip to content

Commit

Permalink
create /var/lib/asterisk; v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jxmx committed Jan 6, 2024
1 parent a489583 commit d6a4151
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#
SRCNAME = asl3-update-nodelist
PKGNAME = $(SRCNAME)
RELVER = 1.1
DEBVER = 2
RELVER = 1.2
DEBVER = 1

#
# Other variables
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
asl3-update-nodelist (1.2-1) unstable; urgency=medium

* Create /var/lib/asterisk
* Remove package dependency for asl3-asterisk for multiplatform

-- Jason McCormick <[email protected]> Sat, 06 Jan 2024 16:27:21 -0500

asl3-update-nodelist (1.1-1) unstable; urgency=medium

* Create user asterisk
Expand Down
5 changes: 5 additions & 0 deletions debian/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ do_configure() {
fi
done

if [ ! -d /var/lib/asterisk ]; then
mkdir /var/lib/asterisk
chown asterisk:asterisk /var/lib/asterisk
fi

# install systemd timer
deb-systemd-invoke enable asl3-update-nodelist.timer
}
Expand Down

0 comments on commit d6a4151

Please sign in to comment.