Fixed the sources url for experimental and corrected the symlink for eudev fetch.
This commit is contained in:
parent
608ac192b5
commit
df0afe69bc
|
|
@ -8,7 +8,9 @@ mkdir -p "${AVAILABLE}"
|
||||||
|
|
||||||
SECTION=(main contrib non-free)
|
SECTION=(main contrib non-free)
|
||||||
ACTIVE_LIST=('ascii' 'ascii-security' 'ascii-updates' 'ascii-backports')
|
ACTIVE_LIST=('ascii' 'ascii-security' 'ascii-updates' 'ascii-backports')
|
||||||
INACTIVE_LIST=('jessie' 'jessie-security' 'jessie-updates' 'jessie-backports' 'beowulf' 'beowulf-security' 'beowulf-updates' 'beowulf-backports' 'ceres' 'experimental')
|
INACTIVE_LIST=('jessie' 'jessie-security' 'jessie-updates' 'jessie-backports' 'beowulf' 'beowulf-security' 'beowulf-updates' 'beowulf-backports' 'ceres')
|
||||||
|
|
||||||
|
OTHER_LIST=('experimental')
|
||||||
|
|
||||||
echo ${#ACTIVE_LIST[@]}
|
echo ${#ACTIVE_LIST[@]}
|
||||||
for RELEASE in "${ACTIVE_LIST[@]}"; do
|
for RELEASE in "${ACTIVE_LIST[@]}"; do
|
||||||
|
|
@ -29,6 +31,15 @@ deb-src http://pkgmaster.devuan.org/merged/ ${RELEASE} ${SECTION[@]}
|
||||||
EOF
|
EOF
|
||||||
done
|
done
|
||||||
|
|
||||||
|
echo ${#OTHER_LIST[@]}
|
||||||
|
for RELEASE in "${OTHER_LIST[@]}"; do
|
||||||
|
echo "${RELEASE}"
|
||||||
|
bash -c "cat > ${AVAILABLE}/devuan_${RELEASE}.list" <<EOF
|
||||||
|
deb http://packages.devuan.org/devuan ${RELEASE} main
|
||||||
|
deb-src http://packages.devuan.org/devuan ${RELEASE} main
|
||||||
|
EOF
|
||||||
|
done
|
||||||
|
|
||||||
bash -c "cat > ${AVAILABLE}/saltstack.list" <<EOF
|
bash -c "cat > ${AVAILABLE}/saltstack.list" <<EOF
|
||||||
# wget -q -O- "http://debian.saltstack.com/debian-salt-team-joehealy.gpg.key" | apt-key add -
|
# wget -q -O- "http://debian.saltstack.com/debian-salt-team-joehealy.gpg.key" | apt-key add -
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
# to remove you need to specify the version of libudev1 to downgrade
|
# to remove you need to specify the version of libudev1 to downgrade
|
||||||
# apt-cache policy libudev1
|
# apt-cache policy libudev1
|
||||||
# apt-get install udev libudev1=232-25+deb9u1
|
# apt-get install udev libudev1=232-25+deb9u1
|
||||||
ln -s /etc/apt/sources.list-available/devuan-experimental.list /etc/apt/sources.list.d/devuan-experimental.list
|
ln -s /etc/apt/sources.list-available/devuan_experimental.list /etc/apt/sources.list.d/devuan_experimental.list
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get -t experimental install eudev
|
apt-get -t experimental install eudev
|
||||||
|
|
||||||
rm /etc/apt/sources.list.d/devuan-experimental.list
|
rm /etc/apt/sources.list.d/devuan_experimental.list
|
||||||
apt-get update
|
apt-get update
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue