diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-01-28 12:05:48 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-01-28 12:05:48 -0200 |
commit | 14b569b0578081f55ab0843638781dddac3917cc (patch) | |
tree | 2574f2d8d5f4a030d43cdffd0156cccb6c51be1e /libre/filesystem/filesystem.install | |
parent | a75f364d94f399159be804254bd74b5aafdfd955 (diff) | |
download | abslibre-14b569b0578081f55ab0843638781dddac3917cc.tar.gz abslibre-14b569b0578081f55ab0843638781dddac3917cc.tar.bz2 abslibre-14b569b0578081f55ab0843638781dddac3917cc.zip |
filesystem-2013.01-3: updating revision
* remove post_install script so filesystem can be added as a glibc dep - all functionality moved elsewhere, remove deps in base only needed for post_update
* remove leftover trace of post_install
Diffstat (limited to 'libre/filesystem/filesystem.install')
-rw-r--r-- | libre/filesystem/filesystem.install | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libre/filesystem/filesystem.install b/libre/filesystem/filesystem.install index 12e59b01b..0684afd69 100644 --- a/libre/filesystem/filesystem.install +++ b/libre/filesystem/filesystem.install @@ -1,13 +1,3 @@ -post_install() { - [ -f var/log/lastlog ] || : >var/log/lastlog - [ -f var/log/wtmp ] || : >var/log/wtmp - [ -f var/log/btmp ] || { : >var/log/btmp && chmod 600 var/log/btmp; } - # workaround for bug #7194 - # readded due to bug #9465 - # please do not remove! - chmod 1777 var/spool/mail tmp var/tmp -} - # args: <group> [options] _addgroup() { if ! getent group "$1" >/dev/null; then @@ -23,8 +13,6 @@ _adduser() { } post_upgrade() { - post_install - _addgroup optical -g 93 _addgroup audio -g 92 _addgroup video -g 91 |