From 84a5e457c66b470a930c41c1c0f8e5f9fe35f903 Mon Sep 17 00:00:00 2001 From: yomguy <> Date: Fri, 9 Jul 2010 00:14:01 +0000 Subject: [PATCH] fix install --- install.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.py b/install.py index 92ab86e..d4f5c68 100644 --- a/install.py +++ b/install.py @@ -50,8 +50,10 @@ os.system('cp -ra ./* ' + install_dir + os.sep) conf_dir = '/etc' if not os.path.exists(conf_dir): os.mkdir(conf_dir) +os.system('chown -R root:root ./conf/etc/') os.system('cp -ra ./conf/etc/* ' + conf_dir + os.sep) + init_dir = '/etc/rc2.d' init_link = init_dir + os.sep + 'S97jackd' if not os.path.exists(init_link): -- 2.39.5