Mercurial > pkg
view src/system-init.pl @ 32:426344e3e639
replace shebang.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Tue, 15 Jan 2013 12:47:33 +0000 |
parents | 2ea43f89d84f |
children | 4c49f8e6d79d |
line wrap: on
line source
1 #!/usr/bin/perl2 use Cwd;5 sub create_install_dir{6 @install_cmd =7 ("install", "-d", "-m",8 "775", "-o", "root", "-g",9 "install", $_[0]);10 print "@install_cmd\n";11 system(@install_cmd) and die $!;}13 @install_dirs = qw(14 /usr/bin15 /usr/sbin16 /usr/include17 /usr/lib18 /usr/man/man119 /usr/man/man220 /usr/man/man321 /usr/man/man422 /usr/man/man523 /usr/man/man624 /usr/man/man725 /usr/man/man826 /usr/doc27 /usr/info28 /usr/share29 /usr/share/dict30 /usr/share/doc31 /usr/share/info32 /usr/share/locale33 /usr/share/man/man134 /usr/share/man/man235 /usr/share/man/man336 /usr/share/man/man437 /usr/share/man/man538 /usr/share/man/man639 /usr/share/man/man740 /usr/share/man/man841 /usr/share/nls42 /usr/share/misc43 /usr/share/terminfo44 /usr/share/zoneinfo45 /usr/share/i18n46 /usr/share/aclocal47 /opt48 /opt/doc49 /opt/info50 /opt/bin51 /opt/include52 /opt/lib53 /opt/man/man154 /opt/man/man255 /opt/man/man356 /opt/man/man457 /opt/man/man558 /opt/man/man659 /opt/man/man760 /opt/man/man861 /var/lib62 /var/opt63 /etc64 /etc/opt65 );68 sub execute{69 print "\t$_[0]\n";70 `$_[0]`;71 if ($?){die $!;}72 }74 execute("groupadd --force install");76 foreach $install_dir(@install_dirs){77 create_install_dir($install_dir);}80 execute("find /.hg -type d -print0 | xargs -0 chmod 2770");81 execute("find /.hg -type f -print0 | xargs -0 chmod 660");83 execute("install -d -o root -g root -m 755 /pkg/skel");85 execute("chown -Rv root:root /.hg");87 $pwd = cwd();88 execute("ln -sf $pwd/profile /pkg/skel/.profile");89 execute("ln -sf $pwd/hg-wrapper /pkg/skel/");90 execute("ln -sf $pwd/save-acls /pkg/skel/");91 execute("ln -sf `which hg` /pkg/skel/");93 execute("install -o root -g root -m 660 $pwd/hgignore /.hgignore");94 execute("install -o root -g root -m 660 $pwd/hgrc /.hg/");100 ## other install dirs101 # /usr/local/man/man1102 # /usr/local/man/man2103 # /usr/local/man/man3104 # /usr/local/man/man4105 # /usr/local/man/man5106 # /usr/local/man/man6107 # /usr/local/man/man7108 # /usr/local/man/man8109 # /usr/local/doc110 # /usr/local/info111 # /usr/local/bin112 # /usr/local/etc113 # /usr/local/include114 # /usr/local/lib115 # /usr/local/sbin116 # /usr/local/share117 # /usr/local/share/dict118 # /usr/local/share/doc119 # /usr/local/share/info120 # /usr/local/share/locale121 # /usr/local/share/man/man1122 # /usr/local/share/man/man2123 # /usr/local/share/man/man3124 # /usr/local/share/man/man4125 # /usr/local/share/man/man5126 # /usr/local/share/man/man6127 # /usr/local/share/man/man7128 # /usr/local/share/man/man8129 # /usr/local/share/nls130 # /usr/local/share/misc131 # /usr/local/share/terminfo132 # /usr/local/share/zoneinfo133 # /sbin134 # /bin135 # /lib