Advertisement
aaditya

manjaro-tools.conf

Mar 1st, 2015
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. ##########################################
  2. ################ common ##################
  3. ##########################################
  4.  
  5. # unset defaults to given value
  6. # branch=stable
  7. branch=unstable
  8.  
  9. # unset defaults to given value
  10. # arch=$(uname -m)
  11.  
  12. # cache dir where buildpkg or buildiso cache packages
  13. # cache_dir=/var/cache/manjaro-tools
  14. cache_dir=/mnt/datalinux2/manjaro-tools/cache
  15.  
  16. # custom path to sets
  17. # sets_dir=/etc/manjaro-tools/sets
  18. sets_dir=/mnt/datalinux2/manjaro-tools/sets
  19.  
  20. ##########################################
  21. ################ buildtree ###############
  22. ##########################################
  23.  
  24. # manjaro package tree
  25. # repo_tree=('core' 'extra' 'community' 'multilib' 'openrc')
  26. repo_tree=('core' 'extra' 'community' 'multilib')
  27.  
  28. # host_tree=https://github.com/manjaro
  29.  
  30. # host_tree_abs=https://projects.archlinux.org/git/svntogit/packages
  31.  
  32. ##########################################
  33. ################ buildpkg ################
  34. ##########################################
  35.  
  36. # default chroot path
  37. # chroots_pkg=/opt/buildpkg
  38. chroots_pkg=/mnt/datalinux2/manjaro-tools/buildpkg
  39.  
  40. # default pkg buildset; name without .set extension
  41. # buildset_pkg=default
  42. profile=openrc-artoo
  43.  
  44. # custom build mirror server
  45. # build_mirror=http://mirror.netzspielplatz.de/manjaro/packages
  46.  
  47. ############# eudev specific #############
  48.  
  49. # This is only useful if you compile packages against eudev
  50.  
  51. # default packages to trigger blacklist
  52. blacklist_trigger=('eudev' 'upower-pm-utils' 'eudev-systemdcompat')
  53.  
  54. # default blacklisted packages to remove from chroot
  55. blacklist=('libsystemd')
  56.  
  57. ##########################################
  58. ################ buildiso ################
  59. ##########################################
  60.  
  61. # default work dir where the image chroots are located
  62. # chroots_iso=/opt/buildiso
  63. chroots_iso=/mnt/datalinux2/manjaro-tools/buildiso
  64.  
  65. # default iso buildset; name without .set extension
  66. # buildset_iso=default
  67.  
  68. ############## iso settings ##############
  69.  
  70. # unset defaults to given value
  71. # iso_label="MJRO090"
  72.  
  73. # unset defaults to given value
  74. # iso_version=0.9.0
  75. iso_version=openrc-$(date +%Y-%m-%d)
  76.  
  77. # unset defaults to given value, specify a date here of have it automatically set
  78. # manjaro_version="$(date +%Y.%m)"
  79.  
  80. # unset defaults to given value
  81. # manjaroiso="manjaroiso"
  82.  
  83. # unset defaults to value sourced from /etc/lsb-release
  84. # code_name="Bellatrix"
  85.  
  86. # unset defaults to given value
  87. # img_name=manjaro
  88.  
  89. # unset defaults to given value
  90. # install_dir=manjaro
  91.  
  92. # unset defaults to given value
  93. # compression=xz
  94.  
  95. ################ install ################
  96.  
  97. # These settings are inherited in live session
  98. # Settings will be installed
  99.  
  100. # unset defaults to given value
  101. # manjaro_kernel="linux317"
  102. manjaro_kernel="linux318"
  103.  
  104. # unset defaults to given value
  105. # plymouth_theme=manjaro-elegant
  106.  
  107. # unset defaults to given values
  108. # names must match systemd service names
  109. # start_systemd=('cronie' 'org.cups.cupsd' 'tlp' 'tlp-sleep')
  110.  
  111. # unset defaults to given values,
  112. # names must match openrc service names
  113. # start_openrc=('cronie' 'cupsd' 'metalog' 'dbus' 'consolekit' 'acpid')
  114. start_openrc=('syslog-ng' 'cronie' 'acpid' 'alsasound' 'dbus' 'consolekit' 'wicd' 'bluetooth')
  115. # start_openrc=('syslog-ng' 'cronie' 'acpid' 'alsasound' 'dbus' 'consolekit' 'NetworkManager')
  116.  
  117. ################# livecd #################
  118.  
  119. # These settings are specific to live session
  120. # Settings will not be installed
  121.  
  122. # unset defaults to given value
  123. # hostname="manjaro"
  124.  
  125. # unset defaults to given value
  126. # username="manjaro"
  127.  
  128. # unset defaults to given value
  129. # password="manjaro"
  130.  
  131. # unset defaults to given values
  132. # addgroups="video,audio,power,disk,storage,optical,network,lp,scanner"
  133.  
  134. # unset defaults to given values
  135. # names must match systemd service names
  136. # services in start_systemd array don't need to be listed here
  137. # start_systemd_live=('bluetooth' 'NetworkManager' 'ModemManager')
  138.  
  139. # unset defaults to given values,
  140. # names must match openrc service names
  141. # services in start_openrc array don't need to be listed here
  142. # start_openrc_live=('bluetooth' 'networkmanager')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement