~ubuntu-branches/ubuntu/quantal/lxc/quantal-201208081743

« back to all changes in this revision

Viewing changes to debian/lxc.postinst

  • Committer: Stéphane Graber
  • Date: 2012-06-25 18:51:17 UTC
  • Revision ID: stgraber@ubuntu.com-20120625185117-82l5g3ix19919am3
Fix indentation of lxc.postinst

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    if ! getent passwd lxc-dnsmasq >/dev/null; then
27
27
        adduser --quiet \
28
28
            --system \
29
 
            --ingroup lxc-dnsmasq \
 
29
            --ingroup lxc-dnsmasq \
30
30
            --quiet \
31
31
            --disabled-login \
32
32
            --disabled-password \
33
 
            --home /var/lib/lxc \
 
33
            --home /var/lib/lxc \
34
34
            --no-create-home \
35
35
            -gecos "LXC dnsmasq" \
36
36
            lxc-dnsmasq
73
73
#DEBHELPER#
74
74
 
75
75
exit 0
76
 
 
77