diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core/filesystem/filesystem.install | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_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.install | 20 |
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 } |