diff options
Diffstat (limited to 'repo/util')
-rw-r--r-- | repo/util/graphviz.xibuild | 4 | ||||
-rw-r--r-- | repo/util/openssh.xibuild | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/repo/util/graphviz.xibuild b/repo/util/graphviz.xibuild index 1a701b2..cc87d95 100644 --- a/repo/util/graphviz.xibuild +++ b/repo/util/graphviz.xibuild @@ -58,3 +58,7 @@ package () { "$PKG_DEST"/usr/share/doc/graphviz } + +postinstall () { + dot -c +} diff --git a/repo/util/openssh.xibuild b/repo/util/openssh.xibuild index 1430347..869bcb9 100644 --- a/repo/util/openssh.xibuild +++ b/repo/util/openssh.xibuild @@ -34,3 +34,8 @@ package () { install -Dm755 sshd.initd $PKG_DEST/etc/init.d/sshd install -Dm755 sshd.confd $PKG_DEST/etc/conf.d/sshd } + +postinstall () { + groupadd -g 33 sshd + useradd -u 33 -g 33 -c sshd -d / sshd +} |