7f6947fd13
The '[alt]' signature reference in the stock package doesn't fit current reality as the hash files for Sisyphus/armh are *not* cryptographically signed. This commit should be reverted when these are.
8 lines
185 B
Bash
Executable File
8 lines
185 B
Bash
Executable File
#!/bin/sh
|
|
# Sisyphus/armh is not being signed as of June, 2013
|
|
|
|
repo_source='/etc/apt/sources.list.d/alt.list'
|
|
[ -s "$repo_source" ] || exit 0
|
|
|
|
sed -i 's, \[alt\],,' "$repo_source" ||:
|