Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall.py
diff options
context:
space:
mode:
authorLord Anton Hvornum <anton.feeds@gmail.com>2018-04-13 06:54:22 +0200
committerLord Anton Hvornum <anton.feeds@gmail.com>2018-04-13 06:54:22 +0200
commit53bee19a99389e06f53edb7491083d616d5aa5e6 (patch)
treeb374cb263b473e13af72e966bd6eb035b061efe2 /archinstall.py
parent57b619faea820a2d0c37e0bc008cb6beccd2bb17 (diff)
More debugging
Diffstat (limited to 'archinstall.py')
-rw-r--r--archinstall.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 5929de13..1966ea6e 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -45,7 +45,8 @@ def get_local_MACs():
def run(cmd, echo=False, opts=None, *args, **kwargs):
if not opts: opts = {}
- #print('[!] {}'.format(cmd))
+ if echo or 'debug' in opts:
+ print('[!] {}'.format(cmd))
handle = Popen(cmd, shell='True', stdout=PIPE, stderr=STDOUT, **kwargs)
output = b''
while handle.poll() is None:
@@ -334,3 +335,7 @@ if __name__ == '__main__':
o = run('reboot now')
else:
print('Done. "umount -R /mnt; reboot" when you\'re done tinkering.')
+
+
+
+'su - postgres -c "psql -c \'CREATE USER pdns WITH PASSWORD \\\'SomePassword\\\';\'"'