File: sysuser.pm

package info (click to toggle)
dh-sysuser 1.6.0
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124 kB
  • sloc: perl: 437; sh: 42; makefile: 5
file content (10 lines) | stat: -rwxr-xr-x 235 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl
use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

# must run after dh_installsysusers, bad interactions otherwise
insert_after('dh_installsysusers', 'dh_sysuser');
insert_before('dh_install', 'dh_sysuser');

1;