blob: 807366b7592d2326b7e0bfca63b9d9239246c625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh
set -e
update-alternatives --quiet \
--install /libexec/runsystem runsystem /libexec/runsystem.gnu 20
update-alternatives \
--install /usr/bin/fakeroot fakeroot /usr/bin/fakeroot-hurd 30
update-alternatives \
--install /bin/ps ps /bin/ps-hurd 60
update-alternatives \
--install /usr/bin/uptime uptime /usr/bin/uptime-hurd 30
update-alternatives \
--install /usr/bin/vmstat vmstat /usr/bin/vmstat-hurd 60
update-alternatives \
--install /usr/bin/w w /usr/bin/w-hurd 60
#DEBHELPER#
if [ "$1" = configure ] && [ "$2" ]; then
# Upgrade: create the missing device and server nodes
/usr/lib/hurd/setup-translators -K
fi
|