summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVianney le Clément de Saint-Marcq2013-05-28 08:43:52 +0200
committerVianney le Clément de Saint-Marcq2015-06-11 20:23:12 +0200
commit8cf736583e55d27a321093193932f53ed28c67a3 (patch)
tree5b069e244043c73b88c806dd04d620856c5ed140
parent28ba5381aff079212fec4f209df0d133171b9db7 (diff)
downloadaur-8cf736583e55d27a321093193932f53ed28c67a3.tar.gz
Update
Fix post_install message to include udev hook and add a post_upgrade message for rebuilding initramfs.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rw-r--r--install8
3 files changed, 8 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8c3c897171a0..531bef8ed13d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = arch-luks-suspend-git
pkgdesc = Lock encrypted root volume on suspend
- pkgver = 20130526.g67a5664
+ pkgver = 20130528.gdd13c91
pkgrel = 1
url = https://github.com/vianney/arch-luks-suspend
install = install
diff --git a/PKGBUILD b/PKGBUILD
index bebf9336997d..5625fa93d11e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Vianney le Clément de Saint-Marcq <vleclement AT gmail·com>
_pkgname=arch-luks-suspend
pkgname=$_pkgname-git
-pkgver=20130526.g67a5664
+pkgver=20130528.gdd13c91
pkgrel=1
pkgdesc="Lock encrypted root volume on suspend"
arch=('any')
diff --git a/install b/install
index b3f73fdc365c..388c9e8a1f9d 100644
--- a/install
+++ b/install
@@ -1,6 +1,10 @@
post_install() {
- echo "Enable the encrypt, shutdown, and suspend hooks in /etc/mkinitcpio.conf"
- echo "and run mkinitcpio -p linux."
+ echo "Enable the udev, encrypt, shutdown, and suspend hooks"
+ echo "in /etc/mkinitcpio.conf and run 'mkinitcpio -p linux'."
+}
+
+post_upgrade() {
+ echo "Run 'mkinitcpio -p linux' to update the initramfs."
}
# vim:set ts=2 sw=2 et: