49 lines
1.8 KiB
Python
49 lines
1.8 KiB
Python
|
|
#### SHARED PATHS
|
|
## bstring paths - Public
|
|
bstring_iso_configs = '~/bubbles/iso_configs'
|
|
bstring_iso_conifgs_fusato = '~/bubbles/iso_configs/fusato'
|
|
# CHROOT
|
|
WPCHROOT = "fusato/config/includes.chroot"
|
|
|
|
##########################################
|
|
## Associated to inflate_bubble.py paths
|
|
# Desktop Environments
|
|
|
|
de_path = '/config/package-lists/'
|
|
|
|
# fusato folders to create
|
|
make_folders = [
|
|
'/config/includes.chroot/usr/share/distro-info/',
|
|
'/config/includes.chroot/usr/share/python-apt/templates/',
|
|
'/config/includes.chroot/usr/share/icons/default',
|
|
'/config/includes.chroot/usr/share/peppermint/',
|
|
'/config/includes.chroot/usr/share/themes/',
|
|
'/config/includes.chroot/usr/local/bin/',
|
|
'/config/includes.chroot/usr/bin/',
|
|
'/config/includes.chroot/usr/sbin',
|
|
'/config/includes.chroot/etc/lightdm',
|
|
'/config/includes.bootstrap/etc/apt',
|
|
'/config/includes.chroot/etc/default',
|
|
'/config/includes.chroot/etc/apt',
|
|
'/config/includes.chroot/etc/apt/preferences.d',
|
|
'/config/includes.chroot/etc/apt/sources.list.d',
|
|
'/config/includes.chroot/etc/skel/Desktop',
|
|
'/config/includes.chroot/etc/skel/.local/share',
|
|
'/config/includes.chroot/etc/skel/.config/autostart/'
|
|
]
|
|
# End Inflate Bubble Paths
|
|
|
|
# Nightly paths
|
|
|
|
nightly_paths = [
|
|
'/var/www/html/nightly/deb32',
|
|
'/var/www/html/nightly/dev32',
|
|
'/var/www/html/nightly/deb64',
|
|
'/var/www/html/nightly/dev64',
|
|
'/var/www/html/nightly/devarm',
|
|
'/var/www/html/nightly/debarm'
|
|
]
|
|
|
|
|