1
0
forked from brl/citadel-tools

Compare commits

..

No commits in common. "b7e6ee3b3c0f8204533edf2282a142a0dd69f42d" and "421b0e27d777c418a26016bd8065715823504637" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ fn deploy_artifacts() -> Result<()> {
let run_images = Path::new(IMAGE_DIRECTORY);
if !run_images.exists() {
util::create_dir(run_images)?;
cmd!("/bin/mount", "-t tmpfs -o size=5g images /run/citadel/images")?;
cmd!("/bin/mount", "-t tmpfs -o size=4g images /run/citadel/images")?;
}
util::read_directory("/boot/images", |dent| {

View File

@ -425,7 +425,7 @@ impl Installer {
util::create_dir(&home)?;
util::chown_user(&home)?;
self.info("Copying /realms/skel into home directory")?;
self.info("Copying /realms/skel into home diectory")?;
util::copy_tree(&self.storage().join("realms/skel"), &home)?;
if let Some(scheme) = Base16Scheme::by_name(MAIN_TERMINAL_SCHEME) {
@ -452,7 +452,7 @@ impl Installer {
util::create_dir(&path)?;
util::chown_user(&path)?;
self.info("Copying /realms/skel into home directory")?;
self.info("Copying /realms/skel into home diectory")?;
util::copy_tree(&self.storage().join("realms/skel"), &home)?;
self.info("Creating apt-cacher config file")?;