summaryrefslogtreecommitdiffstats
path: root/abs/core/filesystem/filesystem.install
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core/filesystem/filesystem.install
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core/filesystem/filesystem.install')
-rw-r--r--abs/core/filesystem/filesystem.install20
1 files changed, 13 insertions, 7 deletions
diff --git a/abs/core/filesystem/filesystem.install b/abs/core/filesystem/filesystem.install
index 5be51ed..e0ce1e2 100644
--- a/abs/core/filesystem/filesystem.install
+++ b/abs/core/filesystem/filesystem.install
@@ -57,12 +57,18 @@ post_upgrade() {
echo "adding new group: scanner"
usr/sbin/groupadd -g 96 scanner >/dev/null
fi
- cp /etc/fstab /etc/fstab.orig
- if grep -q /dev/sro /etc/fstab
- then
- exit
- else
- grep -v /dev/dvd /etc/fstab > /tmp/fstab
- cat /tmp/fstab | sed -e 's|/dev/cdrom|/dev/sr0|g' > /etc/fstab
+ if [ ! "`grep ^rfkill: etc/group`" ]; then
+ echo "adding new group: rfkill"
+ usr/sbin/groupadd -g 24 rfkill >/dev/null
fi
+
+ grep -q '^include /etc/ld.so.conf.d/\*.conf$' etc/ld.so.conf \
+ || echo 'include /etc/ld.so.conf.d/*.conf' >> etc/ld.so.conf
+
+ # set "Last password change" > 0; otherwise su $user wont work
+ for user in bin daemon mail ftp http nobody; do
+ if LANG=C chage -l ${user} | grep -q 'password must be changed'; then
+ chage -d 14871 ${user}
+ fi
+ done
}