add missing deep
Package-Manager: portage-2.2.14 RepoMan-Options: --force
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
# 00-sabayon-anti-fork-bomb.conf
|
||||
#
|
||||
# This file estabilishes Sabayon Linux default process
|
||||
# limits to defend the system against malicious or faulty
|
||||
# code that could potentially make the system unusable by
|
||||
# spawning an excessive amount of processes.
|
||||
#
|
||||
# The root account is not affected by process number
|
||||
# limitations. This way a root console can always kill any
|
||||
# offending process, but an offending root process could
|
||||
# still block the system.
|
||||
#
|
||||
# Each line describes a limit for a user in the form:
|
||||
#
|
||||
# <domain> <type> <item> <value>
|
||||
|
||||
* soft nproc 1300
|
||||
* hard nproc 1800
|
||||
root - nproc infinity
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
#
|
||||
# syntax for repositories (content in square brackets not mandatory):
|
||||
#
|
||||
# repository: where the available packages and its database are stored
|
||||
#| repository = repository_id|repository description|<packages mirror 1> <2>|<database uri>[,<UGC service URI>][#compression_method]
|
||||
#
|
||||
# example (content in square brackets not mandatory):
|
||||
#| repository = sabayonlinux.org|Sabayon Linux Official Repository|http://pkg.sabayon.org|http://pkg.sabayon.org[,sabayon.org][#bz2]
|
||||
#
|
||||
# Supported protocols are: file, http, https, ftp, ftps, rsync
|
||||
# Remove the initial "|" char, do not uncomment blindly,
|
||||
# these are JUST EXAMPLES !!
|
||||
|
||||
# Sabayon Linux Official Repository
|
||||
# Base source URLs, do not remove
|
||||
repository = sablink.nas-central.org|SabLink Linux Official Repository|http://sablink.disconnected-by-peer.at|http://pkgs.sablink.nas-central.org
|
||||
|
||||
# Sabayon Packages Continent-based Load Balancer
|
||||
#repository = sabayonlinux.org||http://dl.sabayon.org/entropy|
|
||||
|
||||
# id-REPO, Indonesian FOSS Repository, 100Mbit/sec
|
||||
#repository = sabayonlinux.org||http://bali.idrepo.or.id/sabayon/entropy|
|
||||
#repository = sabayonlinux.org||http://madura.idrepo.or.id/sabayon/entropy|
|
||||
#repository = sabayonlinux.org||http://sumbawa.idrepo.or.id/sabayon/entropy|
|
||||
|
||||
3
app-misc/sablink-version/files/equo-update-check
Normal file
3
app-misc/sablink-version/files/equo-update-check
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
[ ! -e /tmp/.equoupdatecheck ] && echo "not checked for" > /tmp/.equoupdatecheck
|
||||
cat /tmp/.equoupdatecheck
|
||||
3
app-misc/sablink-version/files/equo-update.cron
Normal file
3
app-misc/sablink-version/files/equo-update.cron
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
LC_ALL=en_US.UTF-8 equo query updates --quiet > /tmp/.equoupdatecheck
|
||||
35
app-misc/sablink-version/files/greeting.sh
Executable file
35
app-misc/sablink-version/files/greeting.sh
Executable file
@@ -0,0 +1,35 @@
|
||||
#!/bin/bash
|
||||
|
||||
# asciiart genrator
|
||||
# http://www.network-science.de/ascii/ Font big for SabLink
|
||||
|
||||
#clear
|
||||
|
||||
COLOUR_LOGO="31"
|
||||
COLOUR_INFO1="32"
|
||||
COLOUR_INFO2="31"
|
||||
COLOUR_INFO3="37"
|
||||
|
||||
echo ''
|
||||
echo '[0;40mHello, welcome to [1;'${COLOUR_INFO1}';40m'$(uname -n)'[0;40m, running'
|
||||
echo '[0;'${COLOUR_LOGO}';40m _____ _ _ _ _ '
|
||||
echo '[0;'${COLOUR_LOGO}';40m / ____| | | | | (_) | | '
|
||||
echo '[0;'${COLOUR_LOGO}';40m| (___ __ _| |__ | | _ _ __ | | __'
|
||||
echo '[0;'${COLOUR_LOGO}';40m \___ \ / _` | ´_ \| | | | ´_ \| |/ /'
|
||||
echo '[0;'${COLOUR_LOGO}';40m ____) | (_| | |_) | |____| | | | | < '
|
||||
echo '[0;'${COLOUR_LOGO}';40m|_____/ \__,_|_.__/|______|_|_| |_|_|\_\'
|
||||
echo '[0;37;40m'
|
||||
|
||||
|
||||
echo '[1;'${COLOUR_INFO2}';40m'$(uname -s)' '$(uname -m)' '$(uname -r)' [0;40m(compiled [0;'${COLOUR_INFO3}';40m'$(uname -v)'[0;40m)'
|
||||
echo ''
|
||||
echo '[0;40mProcessor : [0;'${COLOUR_INFO1}';40m'$(cat /proc/cpuinfo | grep -i 'Processor' | cut -c 13-50 )''
|
||||
echo '[0;40mBogoMIPS : [0;'${COLOUR_INFO1}';40m'$(cat /proc/cpuinfo | grep -i 'BogoMIPS' | cut -c 12-50 | tr -d ' ')''
|
||||
echo '[0;40mRAM : [0;'${COLOUR_INFO1}';40m'$(free -m | grep -i 'Mem:' | cut -c 13-20)'[0;'${COLOUR_INFO3}';40mMB'
|
||||
echo '[0;40mSwap : [0;'${COLOUR_INFO1}';40m'$(free -m | grep -i 'Swap:' | cut -c 15-20)'[0;'${COLOUR_INFO3}';40mMB'
|
||||
echo '[0;40mUptime : [0;'${COLOUR_INFO3}';40m'$(uptime | cut -c 2-60)''
|
||||
echo '[0;40mLogged on as : [0;'${COLOUR_INFO1}';40m'$(whoami)'[0;40m on [0;'${COLOUR_INFO1}';40m'$(tty)'[0;'${COLOUR_INFO3}';40m since [0;'${COLOUR_INFO1}';40m'$(date)''
|
||||
echo '[0;40mUsers logged in : [0;'${COLOUR_INFO1}';40m'$(who -q | more +1)''
|
||||
echo ''
|
||||
echo '[0;40mPackage updates : [0;'${COLOUR_INFO1}';40m'$(equo-update-check)' available updates'
|
||||
echo ''
|
||||
90
app-misc/sablink-version/files/repositories.conf.0
Normal file
90
app-misc/sablink-version/files/repositories.conf.0
Normal file
@@ -0,0 +1,90 @@
|
||||
# Project Entropy 1.0 repositories configuration file
|
||||
|
||||
# syntax for differential-update
|
||||
# differential-update: This setting controls the way Entropy client updates
|
||||
# its repositories. If you're on a slow/unstable network
|
||||
# it is recommended to disable "differential-update"
|
||||
# in favour of a simple and more reliabile HTTP/FTP
|
||||
# connection. In fact, differential repository updates
|
||||
# are known to cause issues on some networks.
|
||||
# Valid parameters: disable, enable, true, false, disabled, enabled
|
||||
# Default is: enabled
|
||||
# differential-update = enabled
|
||||
|
||||
# syntax for developer-repo
|
||||
#
|
||||
# developer-repo: Enable this setting to fetch an extended repository database containing
|
||||
# the whole metadata set (including package ChangeLogs and contents).
|
||||
# Disabled by default.
|
||||
# Valid parameters: disable, enable, true, false, disabled, enabled
|
||||
# developer-repo = disable
|
||||
|
||||
#
|
||||
# syntax for product:
|
||||
#
|
||||
# product: Sabayon Linux product type (eg. standard, professional, mini)
|
||||
# product = product string (no spaces!)
|
||||
#
|
||||
# example:
|
||||
# product = standard
|
||||
# or:
|
||||
# product = professional
|
||||
#
|
||||
# Product default setting
|
||||
product = standard
|
||||
|
||||
#
|
||||
# syntax for branch:
|
||||
#
|
||||
# branch: in Sabayon Linux each release has its branch that is the version name (eg. 3.4, 3.5)
|
||||
# branch = actual branch string (no spaces!)
|
||||
#
|
||||
# example:
|
||||
# branch = 4
|
||||
# or:
|
||||
# branch = 5
|
||||
#
|
||||
# Branch default setting
|
||||
branch = 0
|
||||
|
||||
#
|
||||
# syntax for official-repository-id:
|
||||
#
|
||||
# official-repository-id: Repository identifier for the official main distribution repository
|
||||
# official-repository-id = <repository identifier>
|
||||
#
|
||||
official-repository-id = sablink.nas-central.org
|
||||
|
||||
#
|
||||
# syntax for download-speed-limit:
|
||||
#
|
||||
# download-speed-limit: If you need a way to limit download speed, this is the option you were looking for
|
||||
# download-speed-limit = <maximum allowed speed in kb/sec>
|
||||
#
|
||||
# example:
|
||||
# download-speed-limit = 30
|
||||
#
|
||||
# download-speed-limit =
|
||||
|
||||
#
|
||||
# syntax for downloadtimeout:
|
||||
#
|
||||
# download-timeout: If you are on a slow network, you may want to raise the
|
||||
# download timeout value (by default, it's set to 10 secs)
|
||||
# download-timeout = <maximum allowed speed in kb/sec>
|
||||
#
|
||||
# example:
|
||||
# download-timeout = 20
|
||||
#
|
||||
# download-timeout = 20
|
||||
|
||||
#
|
||||
# syntax for security-url:
|
||||
#
|
||||
# security-url: Entropy compatible Security Advisories (GLSAs) package URL
|
||||
# security-url = <HTTP/FTP download URL>
|
||||
#
|
||||
# example:
|
||||
# securityurl|http://community.sabayon.org/security/security-advisories.tar.bz2
|
||||
#
|
||||
# security-url =
|
||||
90
app-misc/sablink-version/files/repositories.conf.1
Normal file
90
app-misc/sablink-version/files/repositories.conf.1
Normal file
@@ -0,0 +1,90 @@
|
||||
# Project Entropy 1.0 repositories configuration file
|
||||
|
||||
# syntax for differential-update
|
||||
# differential-update: This setting controls the way Entropy client updates
|
||||
# its repositories. If you're on a slow/unstable network
|
||||
# it is recommended to disable "differential-update"
|
||||
# in favour of a simple and more reliabile HTTP/FTP
|
||||
# connection. In fact, differential repository updates
|
||||
# are known to cause issues on some networks.
|
||||
# Valid parameters: disable, enable, true, false, disabled, enabled
|
||||
# Default is: enabled
|
||||
# differential-update = enabled
|
||||
|
||||
# syntax for developer-repo
|
||||
#
|
||||
# developer-repo: Enable this setting to fetch an extended repository database containing
|
||||
# the whole metadata set (including package ChangeLogs and contents).
|
||||
# Disabled by default.
|
||||
# Valid parameters: disable, enable, true, false, disabled, enabled
|
||||
# developer-repo = disable
|
||||
|
||||
#
|
||||
# syntax for product:
|
||||
#
|
||||
# product: Sabayon Linux product type (eg. standard, professional, mini)
|
||||
# product = product string (no spaces!)
|
||||
#
|
||||
# example:
|
||||
# product = standard
|
||||
# or:
|
||||
# product = professional
|
||||
#
|
||||
# Product default setting
|
||||
product = standard
|
||||
|
||||
#
|
||||
# syntax for branch:
|
||||
#
|
||||
# branch: in Sabayon Linux each release has its branch that is the version name (eg. 3.4, 3.5)
|
||||
# branch = actual branch string (no spaces!)
|
||||
#
|
||||
# example:
|
||||
# branch = 4
|
||||
# or:
|
||||
# branch = 5
|
||||
#
|
||||
# Branch default setting
|
||||
branch = 1
|
||||
|
||||
#
|
||||
# syntax for official-repository-id:
|
||||
#
|
||||
# official-repository-id: Repository identifier for the official main distribution repository
|
||||
# official-repository-id = <repository identifier>
|
||||
#
|
||||
official-repository-id = sablink.nas-central.org
|
||||
|
||||
#
|
||||
# syntax for download-speed-limit:
|
||||
#
|
||||
# download-speed-limit: If you need a way to limit download speed, this is the option you were looking for
|
||||
# download-speed-limit = <maximum allowed speed in kb/sec>
|
||||
#
|
||||
# example:
|
||||
# download-speed-limit = 30
|
||||
#
|
||||
# download-speed-limit =
|
||||
|
||||
#
|
||||
# syntax for downloadtimeout:
|
||||
#
|
||||
# download-timeout: If you are on a slow network, you may want to raise the
|
||||
# download timeout value (by default, it's set to 10 secs)
|
||||
# download-timeout = <maximum allowed speed in kb/sec>
|
||||
#
|
||||
# example:
|
||||
# download-timeout = 20
|
||||
#
|
||||
# download-timeout = 20
|
||||
|
||||
#
|
||||
# syntax for security-url:
|
||||
#
|
||||
# security-url: Entropy compatible Security Advisories (GLSAs) package URL
|
||||
# security-url = <HTTP/FTP download URL>
|
||||
#
|
||||
# example:
|
||||
# securityurl|http://community.sabayon.org/security/security-advisories.tar.bz2
|
||||
#
|
||||
# security-url =
|
||||
Reference in New Issue
Block a user