diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-07-12 22:53:11 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-07-12 22:53:11 -0300 |
commit | e14736ca7ac051726b587d8fdb8368be502a9109 (patch) | |
tree | 6a40b3b2de9bf45e8f31ba5fd45ee8f2615bd4ae /libre/lsb-release/lsb-release.install | |
parent | e6e169990bdfc35fb6151f148510bf3f0da1dc1e (diff) | |
parent | 360a407f262ac47087ff29718465fbfc7765cb73 (diff) |
Merge branch 'master' of ssh://gparabola/srv/git/abslibre
Diffstat (limited to 'libre/lsb-release/lsb-release.install')
-rw-r--r-- | libre/lsb-release/lsb-release.install | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libre/lsb-release/lsb-release.install b/libre/lsb-release/lsb-release.install new file mode 100644 index 000000000..62d404892 --- /dev/null +++ b/libre/lsb-release/lsb-release.install @@ -0,0 +1,14 @@ +post_install() { + rm -f /etc/arch-release + echo "Parabola GNU/Linux-libre release" >> /etc/parabola-release +} + +post_upgrade() { + rm -f /etc/arch-release + sed -e '/Parabola GNU\/Linux-[Ll]ibre release/d' -i /etc/parabola-release + echo "Parabola GNU/Linux-libre release" >> /etc/parabola-release +} + +pre_remove() { + sed -e '/Parabola GNU\/Linux-[Ll]ibre release/d' -i /etc/parabola-release +} |