diff options
| -rw-r--r-- | debian/changelog | 6 | ||||
| -rw-r--r-- | src/Propellor/CmdLine.hs | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 3c84ac91..dca286be 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +propellor (0.8.1) UNRELEASED; urgency=medium + + * Run apt-get update in initial bootstrap. + + -- Joey Hess <joeyh@debian.org> Mon, 07 Jul 2014 02:03:46 -0400 + propellor (0.8.0) unstable; urgency=medium * Completely reworked privdata storage. There is now a single file, diff --git a/src/Propellor/CmdLine.hs b/src/Propellor/CmdLine.hs index bc5421e7..7b39cd24 100644 --- a/src/Propellor/CmdLine.hs +++ b/src/Propellor/CmdLine.hs @@ -210,7 +210,8 @@ spin hn hst = do bootstrapcmd = shellWrap $ intercalate " ; " [ "if [ ! -d " ++ localdir ++ " ]" , "then " ++ intercalate " && " - [ "apt-get --no-install-recommends --no-upgrade -y install git make" + [ "apt-get update" + , "apt-get --no-install-recommends --no-upgrade -y install git make" , "echo " ++ toMarked statusMarker (show NeedGitClone) ] , "else " ++ intercalate " && " |
