index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Lord Anton Hvornum <anton.feeds@gmail.com> | 2018-04-12 22:53:21 +0200 |
---|---|---|
committer | Lord Anton Hvornum <anton.feeds@gmail.com> | 2018-04-12 22:53:21 +0200 |
commit | 81df161ffc7923e3dda6860a2a91581b2a62d58d (patch) | |
tree | 4db490d768137187e7bc6d550c038f3e26e2786e | |
parent | c277b96345b02289f13cf94fcbef24c57ca0ee6b (diff) |
-rw-r--r-- | archinstall.py | 2 | ||||
-rw-r--r-- | deployments/08:00:27:6f:0c:25.json | 7 |
diff --git a/archinstall.py b/archinstall.py index 6d04d754..5929de13 100644 --- a/archinstall.py +++ b/archinstall.py @@ -276,7 +276,7 @@ if __name__ == '__main__': o = run("arch-chroot /mnt sh -c \"echo '{hostname}' > /etc/hostname\"".format(**args)) o = run("arch-chroot /mnt sh -c \"echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen\"") o = run("arch-chroot /mnt sh -c \"echo 'LANG=en_US.UTF-8' > /etc/locale.conf\"") - o = run('arch-chroot /mnt locale-gen', echo=True) + o = run('arch-chroot /mnt locale-gen') o = run('arch-chroot /mnt chmod 700 /root') ## == Passwords diff --git a/deployments/08:00:27:6f:0c:25.json b/deployments/08:00:27:6f:0c:25.json index 72bd9fd9..5c29575b 100644 --- a/deployments/08:00:27:6f:0c:25.json +++ b/deployments/08:00:27:6f:0c:25.json @@ -8,9 +8,10 @@ "pacman -Syy --noconfirm powerdns postgresql" : null }, "Setup Database": { - "sh -c \"echo 'postgres:{pin}' | chpasswd\"" : {"debug" : true}, - "su - postgres -c \"initdb --locale $LANG -E UTF8 -D '/var/lib/postgres/data'\"" : {"debug" : true}, - "systemctl start postgresql" : null + "sh -c \"echo 'postgres:{pin}' | chpasswd\"" : null, + "su - postgres -c \"initdb --locale $LANG -E UTF8 -D '/var/lib/postgres/data'\"" : null, + "systemctl start postgresql" : null, + "su - postgres -c \"psql -c 'CREATE USER pdns WITH PASSWORD \\'SomePassword\\';'\"" : {"debug" : true} }, "Setup DNS": { "sh -c \"echo -e 'launch=gpgsql\ngpgsql-host=127.0.0.1\ngpgsql-user=pdns\ngpgsql-dbname=pdns\ngpgsql-password={PIN}' >> /etc/powerdns/pdns.conf\"" : null, |